Browse Source

README-en.md edited online with Bitbucket

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

+ 2
- 2
README-en.md View File

55
 
55
 
56
 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' 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.
56
 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' 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.
57
 
57
 
58
-Take a look at the documentation of the `Bird` class which can be found in [this link.](https://bitbucket.org/eip-uprrp/selections-birthofabird/doc/en).
58
+Take a look at the documentation of the `Bird` class which can be found in [this link.](doc/en/html/index.html).
59
 
59
 
60
 ###Classes
60
 ###Classes
61
 
61
 
172
 
172
 
173
 `Bird (int, EyeBrowType, QString, QString, QWidget *parent=0)`
173
 `Bird (int, EyeBrowType, QString, QString, QWidget *parent=0)`
174
 
174
 
175
-You can see the declarations of the method prototypes in the declaration of the `Bird` class in the project's `bird.h` file. The documentation can be found in [this link.](https://bitbucket.org/eip-uprrp/selections-birthofabird/doc/en) The first constructor, `Bird (QWidget *parent=0)`, is a method that can be invoked with one or no argument. If no argument is used, the function's parameter has a value of 0.
175
+You can see the declarations of the method prototypes in the declaration of the `Bird` class in the project's `bird.h` file. The documentation can be found in [this link.](doc/en/html/index.html) The first constructor, `Bird (QWidget *parent=0)`, is a method that can be invoked with one or no argument. If no argument is used, the function's parameter has a value of 0.
176
 
176
 
177
 A class' constructor that can be invoked without using an argument is the class' *default constructor*; that is, the constructor that is invoked when we create an object using an instruction  like:
177
 A class' constructor that can be invoked without using an argument is the class' *default constructor*; that is, the constructor that is invoked when we create an object using an instruction  like:
178
 
178