diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-11-02 04:44:54 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 04:44:54 +0530 |
commit | f9f87644b96335584a5e7098b6c7819f20cc67b8 (patch) | |
tree | 6b1687b2765341203454c9e95ceb86f59e23ef0d /pt-br/csharp-pt.html.markdown | |
parent | 19ba7e09b46b68bf89a321edb22c49d92b88e0cc (diff) | |
parent | 833714f75ec5b61291c086a98238f4e570ea8fa8 (diff) |
Merge pull request #3364 from daniloyamauti/patch-5
[csharp/pt-br] Update csharp-pt.html.markdown
Diffstat (limited to 'pt-br/csharp-pt.html.markdown')
-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 1f4e3bd5..2ff59296 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,8 @@ 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 |