From 737739eb60c1017d0f0e357477f6bb2c642bc8e7 Mon Sep 17 00:00:00 2001 From: Trey Date: Thu, 1 Nov 2018 04:21:21 -0500 Subject: [PATCH] fix typo misspelling of increment() (#20769) --- 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 2d084acb8f..28121b8048 100644 --- a/guide/english/java/static/index.md +++ b/guide/english/java/static/index.md @@ -62,7 +62,7 @@ public class MyClass { } // Outputs "2" ``` -The output is 2 because it gets incremented by static method `increament()`. Similar to static variables, static methods can also be accessed using instance variables. +The output is 2 because it gets incremented by static method `increment()`. Similar to static variables, static methods can also be accessed using instance variables. ## Static Blocks