summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <ribeirodantasdm@gmail.com>2023-11-03 20:12:35 -0300
committerGitHub <noreply@github.com>2023-11-03 20:12:35 -0300
commitab309e1f0abc3cff357e520c1d8961b0348628be (patch)
tree4b6a83ec4f9af142c5eb471ec8f5367b591216d2
parent08331fe00f4f7a169fa45cc7152eef2e3919902e (diff)
parent4d0127ff168ce3182069e8177512047e57f3258b (diff)
Merge pull request #4787 from flavin27/fix/c/pt-br/text-fix
[c/pt-br] fix untranslated english section
-rw-r--r--pt-br/c-pt.html.markdown1
1 files changed, 0 insertions, 1 deletions
diff --git a/pt-br/c-pt.html.markdown b/pt-br/c-pt.html.markdown
index c3f62bc6..22a86376 100644
--- a/pt-br/c-pt.html.markdown
+++ b/pt-br/c-pt.html.markdown
@@ -384,7 +384,6 @@ int main() {
// Por exemplo, quando um array é passado para uma função ou é atribuído a um
// ponteiro, ele transforma-se (convertido implicitamente) em um ponteiro.
// Exceções: quando o array é o argumento de um operador `&` (endereço-de):
- // Exceptions: when the array is the argument of the `&` (address-of) operator:
int arr[10];
int (*ptr_to_arr)[10] = &arr; // &arr não é do tipo `int *`!
// É do tipo "ponteiro para array" (de `int`s).