From 4058a3f91a346d50096df905ce9f9ad74afaacd3 Mon Sep 17 00:00:00 2001 From: gusthoff Date: Fri, 19 Sep 2025 16:08:04 +0200 Subject: [PATCH 1/2] Editorial change: correct typo --- .../chapters/low_level_programming.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/courses/intro-to-embedded-sys-prog/chapters/low_level_programming.rst b/content/courses/intro-to-embedded-sys-prog/chapters/low_level_programming.rst index be16debd2..bb4b2b420 100644 --- a/content/courses/intro-to-embedded-sys-prog/chapters/low_level_programming.rst +++ b/content/courses/intro-to-embedded-sys-prog/chapters/low_level_programming.rst @@ -871,7 +871,7 @@ But suppose, instead of being declared in the same declarative part, that visible part of a package declaration. (Assume :ada:`X` is visible to clients for some good reason.) That package declaration can be, and usually will be, compiled independently of clients, with the result that :ada:`X` might be -represented in some way that cannot supporting querying the address +represented in some way that cannot support querying the address meaningfully. Therefore, the declaration of :ada:`X` in the package spec should be marked as From b54b3b5ec629b087ed536716b9f9178bed32a464 Mon Sep 17 00:00:00 2001 From: gusthoff Date: Fri, 19 Sep 2025 16:11:17 +0200 Subject: [PATCH 2/2] Editorial change: adding references to bibliography --- content/courses/ada-in-practice/chapters/raii.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/courses/ada-in-practice/chapters/raii.rst b/content/courses/ada-in-practice/chapters/raii.rst index d1839ac32..488dfc556 100644 --- a/content/courses/ada-in-practice/chapters/raii.rst +++ b/content/courses/ada-in-practice/chapters/raii.rst @@ -35,8 +35,9 @@ responsible for implementing the mutually exclusive access, and also thread management. As a result, the source code is much simpler and is robust even in the face of exceptions. -(In the works cited above, Hoare's contribution was equally important, but -Hansen's contributions were reified in +(In the works cited above, Hoare's contribution :footcite:p:`1974:hoare` was +equally important, but Hansen's contributions :footcite:p:`1977:hansen`, +:footcite:p:`1973:hansen` were reified in :wikipedia:`Concurrent Pascal `, a concrete programming language.)