diff options
| author | Chris Boesch <[email protected]> | 2023-05-07 17:39:21 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-07 17:39:21 +0200 |
| commit | f917f50be02ac99c141fe4f13928f049384d118c (patch) | |
| tree | 41108d589cf694478d114a88c41da5561e5b4cd3 /exercises | |
| parent | 151abb4ca1db8afb0da14b746f976c6de560b8b5 (diff) | |
| parent | 7af542bffb982e121607910ff85ae898f641741d (diff) | |
| download | ziglings-f917f50be02ac99c141fe4f13928f049384d118c.tar.xz ziglings-f917f50be02ac99c141fe4f13928f049384d118c.zip | |
Merge pull request #289 from kimshrier/exercise_092_typo
Remove repeated word "with"
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/092_interfaces.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/092_interfaces.zig b/exercises/092_interfaces.zig index 8f0a937..0b6b087 100644 --- a/exercises/092_interfaces.zig +++ b/exercises/092_interfaces.zig @@ -86,7 +86,7 @@ const Insect = union(enum) { // Thanks to 'inline else', we can think of this print() as // being an interface method. Any member of this union with - // with a print() method can be treated uniformly by outside + // a print() method can be treated uniformly by outside // code without needing to know any other details. Cool! pub fn print(self: Insect) void { switch (self) { |
