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
2222~~~~exercism/advanced
2323The declaration works like a note to the compiler, that there is a function of that name, return type and parameter list.
2424The 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 .
2626Declarations can solve problems like cyclic references and they can be used to separate the interface from the implementation.
2727~~~~
2828
@@ -38,7 +38,7 @@ number_of_dragon_balls--; // compilation error
3838
3939~~~~ exercism/note
4040You 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.
4242~~~~
4343
4444If 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