diff --git a/en/code/src/apps/ch.2.3/main.go b/en/code/src/apps/ch.2.3/main.go index 52be227d..0b3ea566 100644 --- a/en/code/src/apps/ch.2.3/main.go +++ b/en/code/src/apps/ch.2.3/main.go @@ -37,7 +37,7 @@ func show_if_var() { fmt.Println("x is less than 10") } - // the following code will not compile, since `x` is only accessable with the if/else block + // the following code will not compile, since `x` is only accessible with the if/else block // fmt.Println(x) } func show_goto() {