aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/092_interfaces.zig
diff options
context:
space:
mode:
authorKim SHrier <gitkim@westryn.net>2023-05-07 02:46:07 -0600
committerKim SHrier <gitkim@westryn.net>2023-05-07 02:46:07 -0600
commit7af542bffb982e121607910ff85ae898f641741d (patch)
treed05048b36fb1c29a3c1619613bab70747ca35de2 /exercises/092_interfaces.zig
parenta446d67992d6035cc6c1fba9d019e9d67f84a79c (diff)
Remove repeated word "with"
Diffstat (limited to 'exercises/092_interfaces.zig')
-rw-r--r--exercises/092_interfaces.zig2
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) {