浏览代码

README-en.md edited online with Bitbucket

父节点
当前提交
bad3acfe3d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md 查看文件

@@ -95,7 +95,7 @@ By creating an object we have available the methods of the class that the object
95 95
 
96 96
 ### Methods of a Class
97 97
 
98
-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`.
98
+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`.
99 99
 
100 100
 ---
101 101