diff --git a/examples/multiple-return-values/multiple-return-values.go b/examples/multiple-return-values/multiple-return-values.go index 2b8ee83..920403c 100644 --- a/examples/multiple-return-values/multiple-return-values.go +++ b/examples/multiple-return-values/multiple-return-values.go @@ -20,8 +20,8 @@ func main() { fmt.Println(a) fmt.Println(b) - // In cases were you only want a subset of the - // returned values, use the blank identifier `_`. + // If you only want a subset of the returned values, + // use the blank identifier `_`. _, c := vals() fmt.Println(c) } diff --git a/examples/switch/switch.sh b/examples/switch/switch.sh index 0d6b4af..6a3343e 100644 --- a/examples/switch/switch.sh +++ b/examples/switch/switch.sh @@ -2,4 +2,3 @@ $ go run switch.go write 2 as two it's the weekend it's before noon -