diff --git a/guide/english/java/static/index.md b/guide/english/java/static/index.md index 3fc00de842..21b84c5acc 100644 --- a/guide/english/java/static/index.md +++ b/guide/english/java/static/index.md @@ -30,7 +30,7 @@ public class MyClass { // Outputs "2" ``` -The outout is 2, because the `COUNT` variable is static and gets incremented by one each time a new object of the Counter class is created. You can also access the static variable using any object of that class, such as `c1.COUNT`. +The output is 2, because the `COUNT` variable is static and gets incremented by one each time a new object of the Counter class is created. You can also access the static variable using any object of that class, such as `c1.COUNT`. ## Static Methods