| ... | @@ -373,8 +373,8 @@ pub const Walker = struct { | ... | @@ -373,8 +373,8 @@ pub const Walker = struct { |
| 373 | /// Leaves the current directory, continuing walking one level up. | 373 | /// Leaves the current directory, continuing walking one level up. |
| 374 | /// If the current entry is a directory entry, then the "current directory" | 374 | /// If the current entry is a directory entry, then the "current directory" |
| 375 | /// is the directory pertaining to the current entry. | 375 | /// is the directory pertaining to the current entry. |
| 376 | pub fn leave(self: *Walker) void { | 376 | pub fn leave(self: *Walker, io: Io) void { |
| 377 | self.inner.leave(); | 377 | self.inner.leave(io); |
| 378 | } | 378 | } |
| 379 | }; | 379 | }; |
| 380 | | 380 | |