summaryrefslogtreecommitdiffhomepage
path: root/pt-br/c-pt.html.markdown
diff options
context:
space:
mode:
authorDiogo Leal <diogo@diogoleal.com>2016-10-17 14:41:46 -0200
committerven <vendethiel@hotmail.fr>2016-10-17 18:41:46 +0200
commit95283618aeddccf1747f71296eb763b012aac730 (patch)
tree5a82f114b5a091ecfded439e229f98e1ab62b8ec /pt-br/c-pt.html.markdown
parent500a79811a2aece3ef75501f3ee7d70cf5930ccf (diff)
[c/pt_br]Fix correct name #define (#2469)
Diffstat (limited to 'pt-br/c-pt.html.markdown')
-rw-r--r--pt-br/c-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/c-pt.html.markdown b/pt-br/c-pt.html.markdown
index 2c274f12..0af553c8 100644
--- a/pt-br/c-pt.html.markdown
+++ b/pt-br/c-pt.html.markdown
@@ -28,7 +28,7 @@ Funcionam no C89 também.
*/
// Constantes: #define <palavra-chave>
-#definie DAY_IN_YEAR 365
+#define DAY_IN_YEAR 365
//enumerações também são modos de definir constantes.
enum day {DOM = 1, SEG, TER, QUA, QUI, SEX, SAB};