Переглянути джерело

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 роки тому
джерело
коміт
a3182f7387
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md Переглянути файл

@@ -55,7 +55,7 @@ In mathematics, a function $$f$$ is a rule that is used to assign to each elemen
55 55
 
56 56
 Functions in programming languages are similar. A function has a series of instructions that take the assigned values as parameters and perform a certain task. In C++ and other programming languages, functions return only one result, as it happens in mathematics. The only difference is that a *programming* function could possibly not return any value (in this case the function is declared as `void`). If the function will return a value, we use the instruction `return`. As in math that you need to specify the domain and range, in programming you need to specify the types of values that the function's parameters and result will have; this is done when declaring the function.
57 57
 
58
-### Function header
58
+### Function Header
59 59
 
60 60
 The first sentence of a function is called the *header* and its structure is as follows:
61 61