Browse Source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 years ago
parent
commit
9cefdd9f5a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md View File

@@ -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