Parcourir la source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri il y a 8 ans
Parent
révision
53a3ab7127
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3
    3
      README-en.md

+ 3
- 3
README-en.md Voir le fichier

@@ -36,7 +36,7 @@ Before you get to the laboratory you should have:
36 36
 
37 37
       c. using the "setter" methods to modify an object's attributes.
38 38
 
39
-3. Studied the documentation for the `Bird` class available in [this link](http://ada.uprrp.edu/~ranazario/bird-html/class_bird.html).
39
+3. Studied the documentation for the `Bird` class available in [this link](https://bitbucket.org/eip-uprrp/selections-birthofabird/doc/en).
40 40
 
41 41
 4. Studied the concepts and instructions for this laboratory session.
42 42
 
@@ -55,7 +55,7 @@ An *object* is an entity that contains data and procedures to manipulate them. S
55 55
 
56 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.](http://ada.uprrp.edu/~ranazario/bird-html/class_bird.html).
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).
59 59
 
60 60
 ###Classes
61 61
 
@@ -172,7 +172,7 @@ The class `Bird` that you will be using in today's session has two constructors
172 172
 
173 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.](http://ada.uprrp.edu/~ranazario/bird-html/class_bird.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.
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.
176 176
 
177 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