From 6bf3361e3dad8cb3fa98efd736b73348791f530a Mon Sep 17 00:00:00 2001 From: Osrepnay <44347902+Osrepnay@users.noreply.github.com> Date: Tue, 4 Aug 2020 18:25:16 -0500 Subject: [PATCH] Small typo --- .../tutorials/pages/beginner/hello_simpleapplication.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/tutorials/pages/beginner/hello_simpleapplication.adoc b/docs/modules/tutorials/pages/beginner/hello_simpleapplication.adoc index 3b626fd25c4..2b6e8eebd7f 100644 --- a/docs/modules/tutorials/pages/beginner/hello_simpleapplication.adoc +++ b/docs/modules/tutorials/pages/beginner/hello_simpleapplication.adoc @@ -249,7 +249,7 @@ It allows you to specify what AppState you want for your application. So SimpleA public class MyGame extends SimpleApplication { public MyGame(){ - super(new MyCustomSate(), new AnotherState(), ....); + super(new MyCustomState(), new AnotherState(), ....); } public static void main(String[] args) {