diff options
| author | daniloyamauti <33129352+daniloyamauti@users.noreply.github.com> | 2019-10-01 12:50:33 -0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-01 12:50:33 -0300 | 
| commit | 03b67fff48f75c318bdf73d1c9d1750ab88367d6 (patch) | |
| tree | f9a3500be6b3a787d46969861707b2a91ed8eba5 | |
| parent | dff76c7965af30e7c7a752513a9ab93a15eb58bc (diff) | |
[csharp/pt-br] Missing translation
| -rw-r--r-- | pt-br/csharp-pt.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 2ff59296..e6fc4258 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -407,12 +407,12 @@ on a new line! ""Wow!"", the masses cried";              return result;          } -        // You can narrow down the objects that are passed in +        // Você pode pode restringir os objetos que são passados          public static void IterateAndPrint<T>(T toPrint) where T: IEnumerable<int>          { -            // We can iterate, since T is a IEnumerable +            // Nos podemos iterar, desde que T seja um "IEnumerable"              foreach (var item in toPrint) -                // Item is an int +                // Item é um inteiro                  Console.WriteLine(item.ToString());          } | 
