Skip to content

Commit cfa0c5e

Browse files
authored
lasagna-master: fix typo (#941)
1 parent bf3e4e5 commit cfa0c5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/lasagna-master/.docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ admin_detected // Function name
2222
~~~~exercism/advanced
2323
The declaration works like a note to the compiler, that there is a function of that name, return type and parameter list.
2424
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.
2626
Declarations 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
4040
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.
4242
~~~~
4343

4444
If you try to change a constant variable after it has been set, your code will not compile.

0 commit comments

Comments
 (0)