summaryrefslogtreecommitdiffhomepage
path: root/pt-br
diff options
context:
space:
mode:
authorlbertolazzi <33129418+lbertolazzi@users.noreply.github.com>2019-10-11 10:19:39 -0300
committerGitHub <noreply@github.com>2019-10-11 10:19:39 -0300
commit2c13b562f8d5c3a81027ee3abd46410452fbf3af (patch)
tree411cd91a9d83d55b28849f0f328fb32380ef4384 /pt-br
parentf0eb830ebded612e53eef019776d6573fbc42ab0 (diff)
Update pascal-pt.html.markdown
Diffstat (limited to 'pt-br')
-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) }