From fa0455ddeb8b68889b487062e380a00d2188b472 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 4 May 2024 23:45:19 +0200 Subject: [PATCH] Fix typo: "ndependent" --- ada_reference_card_2022_en.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ada_reference_card_2022_en.tex b/ada_reference_card_2022_en.tex index cfeaefc..c368195 100644 --- a/ada_reference_card_2022_en.tex +++ b/ada_reference_card_2022_en.tex @@ -323,7 +323,7 @@ \section*{\textsc{Pragmas}} \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-5.html}{Export}{pragma Export ([Convention =>] convention\_identifier, [Entity =>] local\_name [, [External\_Name =>] string\_expression] [,[Link\_Name =>] string\_expression])}{Directs the compiler to make available subprograms or data objects written in Ada to foreign computer languages.} \adanewitem{http://www.ada-auth.org/standards/22rm/html/RM-D-2-6.html}{Generate\_Deadlines}{pragma Generate\_Deadlines}{Makes the deadline of a task be recomputed each time it becomes ready. The new deadline is the value of Real\_Time.Clock at the time the task is added to a ready queue plus the value returned by Get\_Relative\_Deadline.} \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-5.html}{Import}{pragma Import ([Convention =>] convention\_identifier, [Entity =>] local\_name [, [External\_Name =>] string\_expression] [,[Link\_Name =>] string\_expression])}{Directs the compiler to use code or data objects written in a foreign computer language.} - \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-8.html}{ndependent}{pragma Independent (component\_local\_name)}{Declare that a type, object, or component is independently addressable.} + \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-8.html}{Independent}{pragma Independent (component\_local\_name)}{Declare that a type, object, or component is independently addressable.} \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-8.html}{Independent\_Components}{pragma Independent\_Components (local\_name)}{Declare that the components of an array or record type, or an array object, are independently addressable.} \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-J-15-1.html}{Inline}{pragma Inline (name {, ...})}{Directs the compiler to inline the code of the given subprogram, making execution faster by eliminating overhead of the subprogram call.} \adaitem{http://www.ada-auth.org/standards/22rm/html/RM-H-3-2.html}{Inspection\_Point}{pragma Inspection\_Point [(object\_name {, ...})]}{Directs the compiler to ensure that the specified variable is available where the pragma appears. This pragma aids in debugging.}