Editorial: fix identifier typos and factual errors across course materials#1360
Open
gusthoff wants to merge 6 commits into
Open
Editorial: fix identifier typos and factual errors across course materials#1360gusthoff wants to merge 6 commits into
gusthoff wants to merge 6 commits into
Conversation
…ies for Railway Software" Correct the description of the Speed type: "time per distance" → "distance per time". Speed is distance divided by time, not the other way around. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Correct :ada:`P_1` → :ada:`P_1D` in the prose description of the delta aggregate example. The code uses P_1D; the text had a truncated name. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Correct :ada:`M_Max_20` → :ada:`M_Max20` in the prose. The subtype is declared as M_Max20 in the code; the text had a spurious underscore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Correct :ada:`Default_S` → :ada:`Default` in the prose. The constant object is declared as Default in the code; the text used a non-existent name. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Correct :ada:`Add_Unnamed` → :ada:`Add_Named` in the prose. The aspect used in the example is Add_Named, not Add_Unnamed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…rogramming" Correct :ada:`Interfaces.C` → :ada:`Interfaces.C.Strings` in the section heading description. The section covers Interfaces.C.Strings, not the parent Interfaces.C package. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Corrects six editorial errors caught during proofreading — four identifier
typos, one conceptual inversion, and one incorrect package name.
Changes
AdaCore Technologies for Railway Software
technology.rst: Fix inverted Speed type definition — was described as"time per distance"; corrected to "distance per time".
Advanced Ada — Data Types
aggregates.rst: Fix object nameP_1→P_1Din prose referring toa 1D point aggregate example.
arrays.rst: Fix subtype nameM_Max_20→M_Max20to match theactual identifier declared in the code sample.
types.rst: Fix object nameDefault_S→Defaultin explanation ofconstant vs. variable views.
Advanced Ada — Resource Management
containers.rst: Fix aspect procedure nameAdd_Unnamed→Add_Namedin the container aggregate example walkthrough.
Introduction to Embedded Systems Programming
multi_language_development.rst: Fix package nameInterfaces.C→Interfaces.C.Stringsin the section introducing C string interop.Impact
Prose-only changes; no code, tests, or configuration affected.
Co-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com