Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 0a58fae

Browse files
authored
Add missing instruction to move to the next exercise (#127)
1 parent 743329b commit 0a58fae

File tree

14 files changed

+77
-3
lines changed

14 files changed

+77
-3
lines changed

exercises/exercise_001_dotty_deprecated_syntax_rewriting/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,10 @@ wildcard import syntax from using an asterix (`*`) instead of an underscore (`_`
155155
$ git commit -a -m "Snapshot after Scala 3 compiler syntax rewrites"
156156
```
157157

158-
- Move to the next exercise by running the `cmtc next-exercise` command from the command line.
158+
### Next steps
159+
160+
After successfully completing the tasks in this exercise, move to the next one by
161+
running the `cmtc next-exercise` from the command line.
159162

160163
> NOTE: The extra bit of code that was added via `cmtc pull-template ...` can either be left as-is
161164
> or be removed. Your choice.

exercises/exercise_002_dotty_new_syntax_and_indentation_based_syntax/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@ documentation.
7272
$ git commit -a -m "Snapshot after Scala 3 compiler syntax rewrites"
7373
```
7474

75-
- You've just completed this exercise. Let's move on to the next exercise by
76-
executing the `cmtc next-exercise` command.
75+
### Next steps
76+
77+
After successfully completing the tasks in this exercise, move to the next one by
78+
running the `cmtc next-exercise` from the command line.
7779

7880
## Source code formatting & Markdown viewer in IntelliJ
7981

exercises/exercise_003_top_level_definitions/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ Let's continue with the core topic of this exercise:
5555

5656
- Verify that the application runs correctly
5757

58+
### Next steps
59+
60+
After successfully completing the tasks in this exercise, move to the next one by
61+
running the `cmtc next-exercise` from the command line.
62+
5863
## Source code formatting & Markdown viewer in IntelliJ
5964

6065
### Source code formatting

exercises/exercise_004_parameter_untupling/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ pairs.map(_ + _)
5757

5858
- Verify that the application runs correctly
5959

60+
### Next steps
61+
62+
After successfully completing the tasks in this exercise, move to the next one by
63+
running the `cmtc next-exercise` from the command line.
64+
6065
## Source code formatting & Markdown viewer in IntelliJ
6166

6267
### Source code formatting

exercises/exercise_005_extension_methods/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ part of this exercise (adding the new extension methods).
7575

7676
- Verify that the application runs correctly.
7777

78+
### Next steps
79+
80+
After successfully completing the tasks in this exercise, move to the next one by
81+
running the `cmtc next-exercise` from the command line.
82+
7883
## Source code formatting & Markdown viewer in IntelliJ
7984

8085
### Source code formatting

exercises/exercise_006_using_and_summon/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ use of _scala 2_'s `implicit`s and `implicitly`.
2929

3030
- Verify that the application runs correctly
3131

32+
### Next steps
33+
34+
After successfully completing the tasks in this exercise, move to the next one by
35+
running the `cmtc next-exercise` from the command line.
36+
3237
## Source code formatting & Markdown viewer in IntelliJ
3338

3439
### Source code formatting

exercises/exercise_007_givens/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ secondly because these names don't really have a useful application in most case
3333

3434
- Verify that the application runs correctly.
3535

36+
### Next steps
37+
38+
After successfully completing the tasks in this exercise, move to the next one by
39+
running the `cmtc next-exercise` from the command line.
40+
3641
## Source code formatting & Markdown viewer in IntelliJ
3742

3843
### Source code formatting

exercises/exercise_008_enum_and_export/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ in this exercise.
7777

7878
- Verify that the application runs correctly.
7979

80+
### Next steps
81+
82+
After successfully completing the tasks in this exercise, move to the next one by
83+
running the `cmtc next-exercise` from the command line.
84+
8085
## Source code formatting & Markdown viewer in IntelliJ
8186

8287
### Source code formatting

exercises/exercise_009_union_types/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ Which of these actors receive messages that are responses from other actors?
6969

7070
- Verify that the application runs correctly
7171

72+
### Next steps
73+
74+
After successfully completing the tasks in this exercise, move to the next one by
75+
running the `cmtc next-exercise` from the command line.
76+
7277
## Source code formatting & Markdown viewer in IntelliJ
7378

7479
### Source code formatting

exercises/exercise_010_exploring_opaque_type_aliases/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,9 @@ We will now walk through the different features
4343
### Opaque type aliases
4444

4545
- Repeat the same steps for file `UsingTheAliases.scala` in the `opaquetypelaliases.opaquetypealias`
46+
47+
### Next steps
48+
49+
After successfully completing the tasks in this exercise, move to the next one by
50+
running the `cmtc next-exercise` from the command line.
51+

exercises/exercise_011_optional_opaque_type_aliases/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Opaque Type Aliases
22

3+
> NOTE: this exercise is optional. It's purpose is to show that certain use
4+
> cases of opaque type aliases sound great at first, but turn out
5+
> to be very difficult to implement
6+
37
## Background
48

59
An Opaque Type Alias can be used to provide the functionality of a "wrapper
@@ -105,6 +109,11 @@ There are more type aliases in the source code that potentially could be convert
105109
opaque versions. One that sticks out is the `Sudoku` type alias
106110
(`type Sudoku = Vector[ReductionSet`). You may want to take a stab at converting it...
107111

112+
### Next steps
113+
114+
After successfully completing the tasks in this exercise, move to the next one by
115+
running the `cmtc next-exercise` from the command line.
116+
108117
## Source code formatting & Markdown viewer in IntelliJ
109118

110119
### Source code formatting

exercises/exercise_012_multiversal_equality/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ error.
3838
- Run the provided tests by executing the `test` command from the `sbt` prompt
3939
and verify that all tests pass
4040

41+
### Next steps
42+
43+
After successfully completing the tasks in this exercise, move to the next one by
44+
running the `cmtc next-exercise` from the command line.
45+
4146
## Source code formatting & Markdown viewer in IntelliJ
4247

4348
### Source code formatting

exercises/exercise_020_opaque_type_aliases_alt/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Opaque Type Aliases
22

3+
> NOTE: this exercise is optional. It's purpose is to show that certain use
4+
> cases of opaque type aliases sound great at first, but turn out
5+
> to be very difficult to implement
6+
37
## Background
48

59
An Opaque Type Alias can be used to provide the functionality of a "wrapper
@@ -68,6 +72,11 @@ this exercise. Specifically we will convert the last of these type aliases,
6872

6973
- Verify that the application runs correctly
7074

75+
### Next steps
76+
77+
After successfully completing the tasks in this exercise, move to the next one by
78+
running the `cmtc next-exercise` from the command line.
79+
7180
## Source code formatting & Markdown viewer in IntelliJ
7281

7382
### Source code formatting

exercises/exercise_021_multiversal_equality/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ error.
3838
- Run the provided tests by executing the `test` command from the `sbt` prompt
3939
and verify that all tests pass
4040

41+
### Next steps
42+
43+
After successfully completing the tasks in this exercise, move to the next one by
44+
running the `cmtc next-exercise` from the command line.
45+
4146
## Source code formatting & Markdown viewer in IntelliJ
4247

4348
### Source code formatting

0 commit comments

Comments
 (0)