diff options
author | daniloyamauti <33129352+daniloyamauti@users.noreply.github.com> | 2018-10-31 08:23:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 08:23:24 -0300 |
commit | 1b1acc6f3ed7d24733fbacee2d3a6bf6df7c66a4 (patch) | |
tree | c7e00a049da99d9af9663b88c5633808bf26dd6c | |
parent | 4d9778c0988c324d0e520fd460026b39f9f73ccf (diff) |
Update csharp-pt.html.markdown
Translation of comments (line 98 and 99) and correction of comments (line 62)
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index be14a1c8..2b61a8fa 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -59,7 +59,7 @@ namespace Learning.CSharp Console.Write("World"); /////////////////////////////////////////////////// - // Tpos e Variáveis + // Tipos e Variáveis // // Declare uma variável usando <tipo> <nome> /////////////////////////////////////////////////// @@ -95,8 +95,9 @@ namespace Learning.CSharp float fooFloat = 234.5f; // Precision: 7 digits // f is used to denote that this variable value is of type float - // Decimal - a 128-bits data type, with more precision than other floating-point types, - // suited for financial and monetary calculations + // Decimal - um tipo de dados de 128 bits, com mais precisão do que outros tipos de ponto flutuante, + // adequado para cálculos financeiros e monetários + decimal fooDecimal = 150.3m; // Boolean - true & false |