Przeglądaj źródła

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 lat temu
rodzic
commit
44b444cc11
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md Wyświetl plik

103
 
103
 
104
 ###Methods of a Class
104
 ###Methods of a Class
105
 
105
 
106
-The methods of a class determine what actions we can take on the objects of that class. The methods are similar to functions in the sense that they can receive parameters and return a result. An elementary way to know the methods of a class is reading the class declaration. For example, the following is a section of the declaration of the class `Bird` in the file `bird.h`.
106
+The methods of a class determine what actions we can take on the objects of that class. The methods are similar to functions in the sense that they can receive parameters and return a result. An elementary way to know the methods of a class is reading the class declaration. For example, the following code is a section of the declaration of the class `Bird` in the file `bird.h`.
107
 
107
 
108
 ---
108
 ---
109
 
109