diff options
Diffstat (limited to 'pt-br/awk-pt.html.markdown')
| -rw-r--r-- | pt-br/awk-pt.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pt-br/awk-pt.html.markdown b/pt-br/awk-pt.html.markdown index 75b73abe..761f5294 100644 --- a/pt-br/awk-pt.html.markdown +++ b/pt-br/awk-pt.html.markdown @@ -171,7 +171,7 @@ function arithmetic_functions(a, b, c,    d) {      # Muitas implementações AWK possuem algumas funções trigonométricas padrão      localvar = sin(a)      localvar = cos(a) -    localvar = atan2(a, b) # arco-tangente de b / a +    localvar = atan2(b, a) # arco-tangente de b / a      # E conteúdo logarítmico      localvar = exp(a) | 
