Skip to content

Commit

Permalink
fix missed quote symbol (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
burenkov-anton authored and mokevnin committed Nov 3, 2019
1 parent ab1504b commit 03d41d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/35-calling-functions/100-call/description.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ theory: |
$result = pow(2, 3); // 8
```
We created a variable named `$result` and instructed the interpreter to store in it the result of the `pow` function. Notation `pow(2, 3) means that we call the function named `pow` with arguments (or parameters) 2 and 3. Upon execution the function _returned_ a result.
We created a variable named `$result` and instructed the interpreter to store in it the result of the `pow` function. Notation `pow(2, 3)` means that we call the function named `pow` with arguments (or parameters) 2 and 3. Upon execution the function _returned_ a result.
Arguments are data a function receives when it's called. Functions calculate and return result based on this data.
Expand Down

0 comments on commit 03d41d8

Please sign in to comment.