소스 검색

README-en.md edited online with Bitbucket

부모
커밋
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