From bc84a7eb67252a565ee77290b1961c4357fc976e Mon Sep 17 00:00:00 2001 From: Randy Janecek Date: Sun, 14 Apr 2019 00:37:40 -0400 Subject: [PATCH] fixed typos (#32588) --- guide/english/java/static/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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