1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10:49 +02:00

Merge pull request #2958 from ferfedel/patch-2

[csharp/pt-br] Missing translation
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë
2017-11-03 23:09:10 +02:00
committed by GitHub

View File

@@ -784,11 +784,11 @@ on a new line! ""Wow!"", the masses cried";
} // end class Bicycle
// PennyFarthing is a subclass of Bicycle
// PennyFarthing é uma subclasse de Bicycle
class PennyFarthing : Bicycle
{
// (Penny Farthings are those bicycles with the big front wheel.
// They have no gears.)
// (Penny Farthings são aquelas bicicletas com uma grande roda frontal.
// Elas não tem correias.)
// chamando construtor pai
public PennyFarthing(int startCadence, int startSpeed) :