소스 검색

README-en.md edited online with Bitbucket

부모
커밋
00dc409bf1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md 파일 보기

@@ -103,7 +103,7 @@ By creating an object we have available the methods of the class that the object
103 103
 
104 104
 ###Methods of a Class
105 105
 
106
-The methods of a class determine the actions that 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 is a section of the declaration of the class `Bird` in the file `bird.h`.
107 107
 
108 108
 ---
109 109