diff --git a/tutorials/writing_tests_for_plugins/annotator_test.md b/tutorials/writing_tests_for_plugins/annotator_test.md index 8c6833a61..d96a16773 100644 --- a/tutorials/writing_tests_for_plugins/annotator_test.md +++ b/tutorials/writing_tests_for_plugins/annotator_test.md @@ -14,10 +14,10 @@ The first instance is a valid use of the `simple:` prefix followed by the Simple The second is a valid prefix but an invalid key, as noted by the test `` [highlighting](/basics/testing_plugins/testing_highlighting.md). ```java public class Test { - public static void main(String[] args) { - System.out.println("simple:website"); - System.out.println("simple:websit"); - } + public static void main(String[] args) { + System.out.println("simple:website"); + System.out.println("simple:websit"); + } } ```