summaryrefslogtreecommitdiffhomepage
path: root/pt-br/csharp-pt.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <ribeirodantasdm@gmail.com>2023-05-07 18:24:16 -0300
committerGitHub <noreply@github.com>2023-05-07 18:24:16 -0300
commit04d2063229e35c982872155fc83fa7d326d9bad5 (patch)
treef5e2d36dfcafdcf49ea1de2804206af3d275d648 /pt-br/csharp-pt.html.markdown
parenteeb6c05ebbea620b30ec926f053ae5cace1070fe (diff)
parentc66e7b39a585bc0c5cc1410aef8301976f86354c (diff)
Merge pull request #4663 from thiagola92/csharp-pt
[csharp/pt-br] Grammar fix
Diffstat (limited to 'pt-br/csharp-pt.html.markdown')
-rw-r--r--pt-br/csharp-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown
index 475c0568..87e5b3a4 100644
--- a/pt-br/csharp-pt.html.markdown
+++ b/pt-br/csharp-pt.html.markdown
@@ -153,7 +153,7 @@ on a new line! ""Wow!"", the masses cried";
intArray[1] = 1;
// Listas
- // Listas são usadas frequentemente tanto quanto matriz por serem mais flexiveis
+ // Listas são usadas frequentemente tanto quanto matriz por serem mais flexíveis
// O formato de declarar uma lista é o seguinte:
// List<tipodado> <var nome> = new List<tipodado>();
List<int> intList = new List<int>();