File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/concept/lasagna-master/.docs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ admin_detected // Function name
22
22
~~~~exercism/advanced
23
23
The declaration works like a note to the compiler, that there is a function of that name, return type and parameter list.
24
24
The code will not work, if the definition is missing.
25
- Declarations are optional, they are needed if you use the function before its definiton .
25
+ Declarations are optional, they are needed if you use the function before its definition .
26
26
Declarations can solve problems like cyclic references and they can be used to separate the interface from the implementation.
27
27
~~~~
28
28
@@ -38,7 +38,7 @@ number_of_dragon_balls--; // compilation error
38
38
39
39
~~~~ exercism/note
40
40
You will often see constants written in _UPPER_SNAKE_CASE_.
41
- It is recommened to reserve this casing for macros, if there is no other convention.
41
+ It is recommended to reserve this casing for macros, if there is no other convention.
42
42
~~~~
43
43
44
44
If you try to change a constant variable after it has been set, your code will not compile.
You can’t perform that action at this time.
0 commit comments