From 997890a2aa6eaef7e44898893c47cc4f409fe743 Mon Sep 17 00:00:00 2001 From: JohnHake Date: Mon, 30 Mar 2020 19:01:36 -0700 Subject: [PATCH] [annotator] fix highlighting syntax --- tutorials/writing_tests_for_plugins/annotator_test.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"); + } } ```