Skip to content

Commit 2c1bce3

Browse files
Remove formatting from slide/module titles
1 parent cab1499 commit 2c1bce3

24 files changed

+101
-101
lines changed

courses/ada_essentials/030_scalar_types/06-character_types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Character Oriented Packages
4444
* See RM Annex A for details
4545

4646
-----------------------------------------
47-
`Ada.Characters.Latin_1` Sample Content
47+
"Ada.Characters.Latin_1" Sample Content
4848
-----------------------------------------
4949

5050
.. code:: Ada

courses/ada_essentials/060_record_types/04-record_aggregates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Aggregates with Only One Component
162162
S : Singular := (A => 3 + 1); -- required
163163
164164
--------------------------
165-
Aggregates with `others`
165+
Aggregates with "others"
166166
--------------------------
167167

168168
* Indicates all components not yet specified (like arrays)

courses/ada_essentials/070_subprograms/03-parameters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Function Return
8888
function To_String (Value : Integer) return String;
8989
9090
---------------------------------
91-
Why Read Mode `out` Parameters?
91+
Why Read Mode "out" Parameters?
9292
---------------------------------
9393

9494
* No need for readable temporary variable

courses/ada_essentials/070_subprograms/09-potential_pitfalls.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Potential Pitfalls
33
====================
44

55
-----------------------------
6-
Mode `out` Risk for Scalars
6+
Mode "out" Risk for Scalars
77
-----------------------------
88

99
* Always assign value to :ada:`out` parameters

courses/ada_essentials/090_overloading/04-user_defined_equality-in_depth.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ User-Defined Equality
3737
return Fuzzy_Result;
3838
3939
------------------------------------
40-
User-Defined `=` Returning Boolean
40+
User-Defined "=" Returning Boolean
4141
------------------------------------
4242

4343
* Implicitly declares ``/=``

courses/ada_essentials/090_overloading/05-composition_of_equality.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Composition of Equality
33
=========================
44

5-
----------------------------
6-
"Composition of Equality"
7-
----------------------------
5+
---------------------------
6+
"Composition of Equality"
7+
---------------------------
88

99
* Whether user-defined equality functions are called automatically as part of equality for composite types containing types having such functions
1010
* Only composes when user-defined equality is defined
@@ -78,7 +78,7 @@ Enclosing Equality Function Example
7878
end "=";
7979
8080
----------------------------------------
81-
`=` for Predefined Composites Composes
81+
"=" for Predefined Composites Composes
8282
----------------------------------------
8383

8484
* Per RM 4.5.2(32/1)

courses/ada_essentials/100_packages/03-referencing_other_packages.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Referencing Other Packages
33
============================
44

5-
----------------
6-
`with` Clause
7-
----------------
5+
---------------
6+
"with" Clause
7+
---------------
88

99
* When package :ada:`User` needs access to package :ada:`Designer`, it uses a :ada:`with` clause
1010

@@ -51,7 +51,7 @@ Referencing Exported Items
5151
...
5252
5353
----------------------
54-
`with` Clause Syntax
54+
"with" Clause Syntax
5555
----------------------
5656

5757
* A library unit is a package or subprogram that is not nested within another unit

courses/ada_essentials/100_packages/88-packages.lab.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Packages Lab
3232

3333
- Remember: :code:`with package_name;` gives access to :code:`package_name`
3434

35-
----------------------------------------------
36-
Creating Packages in :toolname:`GNAT Studio`
37-
----------------------------------------------
35+
----------------------------------
36+
Creating Packages in GNAT Studio
37+
----------------------------------
3838

3939
* Right-click on the source directory node
4040

courses/ada_essentials/130_program_structure/03-circular_dependencies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Circular Dependency in Package Declaration
7373
end Department;
7474
7575
------------------------
76-
`limited with` Clauses
76+
"limited with" Clauses
7777
------------------------
7878

7979
* Solve the circular declaration dependency problem
@@ -166,7 +166,7 @@ Legal Package Declaration Dependency
166166
language_version 2005
167167
168168
----------------------------------------
169-
Full `with` Clause on the Package Body
169+
Full "with" Clause on the Package Body
170170
----------------------------------------
171171

172172
* Even though declaration has a :ada:`limited with` clause

courses/ada_essentials/130_program_structure/04-hierarchical_library_units.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Example of Visibility As If Nested
246246
end Complex;
247247
248248
-------------------------------------------
249-
`with` Clauses for Ancestors Are Implicit
249+
"with" Clauses for Ancestors Are Implicit
250250
-------------------------------------------
251251

252252
.. container:: columns
@@ -278,9 +278,9 @@ Example of Visibility As If Nested
278278
C : Integer := A;
279279
end Parent.Child;
280280
281-
-------------------------------------------
282-
`with` Clauses for Siblings Are Required
283-
-------------------------------------------
281+
------------------------------------------
282+
"with" Clauses for Siblings Are Required
283+
------------------------------------------
284284

285285
* If references are intended
286286

0 commit comments

Comments
 (0)