Skip to content

Commit 2800568

Browse files
ClémentClément
authored andcommitted
Trying to get rephrase titles that confuses anchoring.
1 parent c66e0c2 commit 2800568

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

source/docs/about/dev_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ tags:
33
- guide
44
---
55

6-
# Dev. Guide
6+
# Developer's Guide
77

88
This guide explains how this resource is organized, how it is built and deployed, and how to maintain this resource.
99
It is intended to be comprehensive, but should most likely be read only after having read our [contributing](./docs/about/contributing) and [UCA](./docs/academic_life/uca_guide#editing-the-resources) guides.

source/lectures/collections/arrays_of_objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ The syntax is straightforward once understood that jagged arrays are *exactly* a
128128

129129
In this example, it should be clear that `jaggedArray[row]` is itself an array, and hence that we can use e.g., `jaggedArray[row].Length` or `jaggedArray[row][arrayCell]`.
130130

131-
### When to Use Rectangular vs. Jagged Arrays
131+
### Comparing Use Cases for Rectangular and Jagged Arrays
132132

133133
The main distinction between rectangular and jagged arrays is that the former is more consistent with its sizing--in other words, in a rectangular array, each array housed within it will be the same size in every row, by definition. In contrast, jagged arrays are not as consistent. This can be seen in the difference between how rectangular and jagged arrays are initialized. Recall that, when initializing a rectangular array, the number of rows and columns is required, but only the number of rows is required for a jagged array.
134134

source/lectures/control/ifs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ Console.WriteLine("Goodbye");
306306
| -15 | "yes" | `true` | 30 |
307307
| 10 | "yes" | `false` | 40 |
308308
309-
### if-else-if vs. nested if
309+
### Comparing if-else-if and nested if statements
310310
311311
- Sometimes a nested `if` statement can be rewritten as an `if-else-if` statement
312312

source/lectures/intro/datatypes_and_variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ tags:
8686
- Example: `myAge = 29;`
8787
- Value *must* match the type of the variable. If `myAge` was declared as an `int`-type variable, you cannot write `myAge = "29";` because `"29"` is a `string`
8888
89-
### Initialization (Declaration + Assignment)
89+
### Initialization: Declaration and Assignment in One Statement
9090
9191
- Initialization statement combines declaration and assignment in one single statement (it is just a shortcut, a.k.a. some ["syntactical sugar"](https://www.wikiwand.com/en/Syntactic_sugar), and not something new)
9292
- Creates a new variable and also gives it an initial value

source/lectures/oop/oop_intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Let's look at each part of this code in order.
372372
373373
## Variable Scope
374374
375-
#### Instance variables vs. local variables
375+
#### Instance and local variables
376376
377377
- Instance variables: Stored (in memory) with the object, shared by all methods of the object. Changes made within a method persist after method finishes executing.
378378

source/templates/cover/cover_page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords:
1414
- C# Programming language
1515
---
1616

17-
# Foreword {-}
17+
# Foreword
1818

1919
Welcome to the course resources book to teach principles of computer programming using C#.
2020
This resource is accessible on-line at <https://princomp.github.io/>, and [the Credits section below](#credits) gives more detail on how this resource was developed and why.

0 commit comments

Comments
 (0)