diff --git a/examples/if-else/if-else.go b/examples/if-else/if-else.go index d326b90..4de7c47 100644 --- a/examples/if-else/if-else.go +++ b/examples/if-else/if-else.go @@ -21,7 +21,7 @@ func main() { // A statement can precede conditionals; any variables // declared in this statement are available in the current - // and all the succeeding branches. + // and all subsequent branches. if num := 9; num < 0 { fmt.Println(num, "is negative") } else if num < 10 { diff --git a/examples/if-else/if-else.hash b/examples/if-else/if-else.hash index a0aa4b6..37363db 100644 --- a/examples/if-else/if-else.hash +++ b/examples/if-else/if-else.hash @@ -1,2 +1,2 @@ -bbac731541876062076e3dea9a2b536988d7739d -_5PfTs6dNhr +d6a962236fc1296684cd1ffb2d95d131ed84abde +U7xcpdutgCJ diff --git a/public/if-else b/public/if-else index 1523e8d..ec12be9 100644 --- a/public/if-else +++ b/public/if-else @@ -42,7 +42,7 @@ straight-forward.
package main
A statement can precede conditionals; any variables declared in this statement are available in the current -and all the succeeding branches.
+and all subsequent branches.