changed self parameter in connect to pointer

pull/2/head
Chris Boesch 1 year ago
parent aa01f6eea9
commit ad8aec7885

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

Loading…
Cancel
Save