Merge pull request #209 from chrboesch/e70

changed self parameter in connect to pointer
This commit is contained in:
Chris Boesch 2023-03-31 12:31:15 +02:00 committed by GitHub
commit b75a76d072

View file

@ -70,7 +70,7 @@ const Duct = struct {
galvanized: bool,
connection: ?*Duct = null,
fn connect(self: Duct, other: *Duct) !void {
fn connect(self: *Duct, other: *Duct) !void {
if (self.diameter == other.diameter) {
self.connection = other;
} else {
@ -95,7 +95,7 @@ pub fn main() void {
};
// This is not even remotely a duck.
const ducky3 = Duct{
var ducky3 = Duct{
.diameter = 17,
.length = 165,
.galvanized = true,