mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 11:40:46 -05:00
Remove repeated word "with"
This commit is contained in:
parent
a446d67992
commit
7af542bffb
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ const Insect = union(enum) {
|
||||||
|
|
||||||
// Thanks to 'inline else', we can think of this print() as
|
// Thanks to 'inline else', we can think of this print() as
|
||||||
// being an interface method. Any member of this union with
|
// 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!
|
// code without needing to know any other details. Cool!
|
||||||
pub fn print(self: Insect) void {
|
pub fn print(self: Insect) void {
|
||||||
switch (self) {
|
switch (self) {
|
||||||
|
|
Loading…
Reference in a new issue