From dd5508e947428ea3c724cec1a8a4bf1ad61adb23 Mon Sep 17 00:00:00 2001 From: gusthoff Date: Sat, 14 Oct 2023 02:06:11 +0200 Subject: [PATCH] Editorial change: replacing by correct word Fix #940. --- .../chapters/02_Perspective.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/courses/Ada_For_The_Embedded_C_Developer/chapters/02_Perspective.rst b/content/courses/Ada_For_The_Embedded_C_Developer/chapters/02_Perspective.rst index 5838d8366..7267c23a9 100644 --- a/content/courses/Ada_For_The_Embedded_C_Developer/chapters/02_Perspective.rst +++ b/content/courses/Ada_For_The_Embedded_C_Developer/chapters/02_Perspective.rst @@ -551,7 +551,7 @@ index is not declared in the declarative section! Something peculiar that you may have noticed about declarations in Ada is that they are backwards from the way C does declarations. The C language expects the type followed by the variable name. Ada expects the variable - name followed by a semicolon and then the type. + name followed by a colon and then the type. The next block in the Ada example is between the :ada:`begin` and :ada:`end` keywords. This is where your statements will live. You can create new scopes by