diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-11-24 12:04:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-24 12:04:17 +0530 |
commit | 86f0b57dbb8ddbac03de83eb519fcf86c4a5fa39 (patch) | |
tree | 8e9be4245d18439cab1fd70a7c371c02972e894b | |
parent | a7668c791b785f67888b7ad6981f782e772d6c7d (diff) | |
parent | 39842323850cb75480982f32a6239362754b77aa (diff) |
Merge pull request #3647 from daniloyamauti/patch-10
[csharp/pt-br] Missing translation
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 3bdbcdb1..c1b4a5cf 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -78,7 +78,7 @@ namespace Learning.CSharp short fooShort = 10000; ushort fooUshort = 10000; - // Integer - 32-bit integer + // Integer - inteiro de 32 bits int fooInt = 1; // (-2,147,483,648 <= int <= 2,147,483,647) uint fooUint = 1; // (0 <= uint <= 4,294,967,295) |