From 80b665d2f000628a416dacc375b1b1f79450a6e9 Mon Sep 17 00:00:00 2001 From: Roman Sobkuliak Date: Wed, 26 Apr 2023 04:09:06 +0200 Subject: [PATCH] Fix post annotations in HelloWorld docs (#1985) --- docs/Tutorials/HelloWorld/HelloWorld.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Tutorials/HelloWorld/HelloWorld.md b/docs/Tutorials/HelloWorld/HelloWorld.md index 527d08413e..9f09859c1a 100644 --- a/docs/Tutorials/HelloWorld/HelloWorld.md +++ b/docs/Tutorials/HelloWorld/HelloWorld.md @@ -113,12 +113,12 @@ with the following: ``` @ Command to issue greeting with maximum length of 20 characters async command SAY_HELLO( - greeting: string size 20 @ Greeting to repeat in the Hello event + greeting: string size 20 @< Greeting to repeat in the Hello event ) @ Greeting event with maximum greeting length of 20 characters event Hello( - greeting: string size 20 @ Greeting supplied from the SAY_HELLO command + greeting: string size 20 @< Greeting supplied from the SAY_HELLO command ) severity activity high format "I say: {}" @ A count of the number of greetings issued