소스 검색

README-en.md edited online with Bitbucket

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

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

@@ -36,7 +36,7 @@ An *object* is an entity that contains data and procedures to manipulate them. S
36 36
 
37 37
 It is not necessary to know all of the details about the methods of the object to define and use an object, but you must know how to create it and how to interact with it. The necessary information is available in the class's documentation. Before creating objects of any class, we should familiarize ourselves with its documentation. The documentation indicates, among other things, what entity is trying to be represented in the class, and its interface or methods available to manipulate the objects of the class.
38 38
 
39
-So you can see an example of a class, take a look at the documentation of the `Bird` class which can be found in [this link](doc/en/html/index.html).
39
+To see an example of a class, take a look at the documentation of the `Bird` class which can be found in [this link](doc/en/html/index.html).
40 40
 
41 41
 
42 42
 ### Classes