summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2020-01-11 14:17:07 +0530
committerGitHub <noreply@github.com>2020-01-11 14:17:07 +0530
commit21de21457bb335a6541adfae8b72720537b5eeb4 (patch)
tree2fa723085c36a51bf4ed4d03eb3268bef05df458
parent1d4331fd9d9e617f47ccd0fb7b48c2f85050f6c6 (diff)
parent2c13b562f8d5c3a81027ee3abd46410452fbf3af (diff)
Merge pull request #3687 from lbertolazzi/patch-7
Update pascal-pt.html.markdown
-rw-r--r--pt-br/pascal-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/pascal-pt.html.markdown b/pt-br/pascal-pt.html.markdown
index 3a37271a..82cce843 100644
--- a/pt-br/pascal-pt.html.markdown
+++ b/pt-br/pascal-pt.html.markdown
@@ -157,7 +157,7 @@ BEGIN
r := int; // um real pode receber um valor inteiro (mas não o contrário)
c := str[1]; //acessando elementos de um vetor: vetor[índice do elemento]
- str := 'hello' + 'world'; //concatenção de strings
+ str := 'hello' + 'world'; //concatenação de strings
my_str[0] := 'a'; { só se pode atribuir valores a vetores elemento
por elemento (não o vetor inteiro de uma vez) }