瀏覽代碼

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 年之前
父節點
當前提交
8a21f679b4
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      README-en.md

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

@@ -135,7 +135,7 @@ class Bird : public QWidget
135 135
 
136 136
 ---
137 137
 
138
-Once the object is created, its methods provide the only way to change its attributes, to obtain information about them, or to compute with them. This is why the set of methods is commonly called the *interface*. The methods are the interface between the object’s user and its content.
138
+Once the object is created, its methods provide the only way to change its attributes, to obtain information about them, or do computations with them. This is why the set of methods is commonly called the *interface*. The methods are the interface between the object’s user and its content.
139 139
 
140 140
 In general, in each class the prototypes of the methods are defined to construct the objects, and to search, manipulate and store the data. The following is a general format of a method prototype:
141 141