The tutorial question seems to be using "UMLish" notation for laying down the requirements/specification but doesn't take into consideration the fact that Constructors don't actually return anything. A constructor would be denoted by something like:
==========================================================
| Rectangle |
==========================================================
- length: double
- breadth: double
-----------------------------------------------------------
+ <<constructor>> Rectangle()
+ <<constructor>> Rectangle(length:double, breadth: double)
+ getLength(): double
+ getBreadth(): double
-----------------------------------------------------------
Anyways, to conclude, just ignore it as a typo and carry/move forward with your solution.