From e88289ccc5ff99b44ad8b56dae963773d0232f98 Mon Sep 17 00:00:00 2001 From: Robson Couto Date: Sat, 4 Nov 2017 15:47:14 -0300 Subject: [PATCH 1/2] Translated isGraph() --- Language/Functions/Characters/isGraph.adoc | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Language/Functions/Characters/isGraph.adoc b/Language/Functions/Characters/isGraph.adoc index ec8194b..7db84e3 100644 --- a/Language/Functions/Characters/isGraph.adoc +++ b/Language/Functions/Characters/isGraph.adoc @@ -1,7 +1,7 @@ --- title: "isGraph()" categories: [ "Functions" ] -subCategories: [ "Characters" ] +subCategories: [ "Caracteres" ] --- :source-highlighter: pygments @@ -17,25 +17,25 @@ subCategories: [ "Characters" ] -- [float] -=== Description -Analyse if a char is printable with some content (space is printable but has no content). Returns true if thisChar is printable. +=== Descrição +Analisa se um caractere é imprimível com algum conteúdo (espaços são imprimíveis, mas não possuem conteúdo). Retorna true se thisChar é imprimível. [%hardbreaks] [float] -=== Syntax +=== Sintaxe [source,arduino] ---- `isGraph(thisChar)` ---- [float] -=== Parameters -`thisChar`: variable. *Allowed data types:* char +=== Parâmetros +`thisChar`: variável. *Tipos de dados permitidos:* char [float] -=== Returns -`true`: if thisChar is printable. +=== Retorna +`true`: se thisChar é imprimível. -- // OVERVIEW SECTION ENDS @@ -47,11 +47,11 @@ Analyse if a char is printable with some content (space is printable but has no -- [float] -=== Example Code +=== Código de Exemplo [source,arduino] ---- -if (isGraph(this)) // tests if this is a printable character but not a blank space. +if (isGraph(this)) // testa se this é um caractere imprimível mas não um espaço. { Serial.println("The character is printable"); } @@ -74,10 +74,10 @@ else === See also [role="language"] -* #LANGUAGE# link:../../../variables/data-types/char[char] -* #LANGUAGE# link:../../../structure/control-structure/if[if (conditional operators)] -* #LANGUAGE# link:../../../structure/control-structure/while[while (conditional operators)] -* #LANGUAGE# link:../../communication/serial/read[read()] +* #LINGUAGEM# link:../../../variables/data-types/char[char] +* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)] +* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)] +* #LINGUAGEM# link:../../communication/serial/read[read()] -- -// SEE ALSO SECTION ENDS \ No newline at end of file +// SEE ALSO SECTION ENDS From 7a0adc208df1aa91c6f621518fb4548c56a60f13 Mon Sep 17 00:00:00 2001 From: Robson Couto Date: Sat, 4 Nov 2017 15:57:40 -0300 Subject: [PATCH 2/2] Fixed See Also --- Language/Functions/Characters/isGraph.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Characters/isGraph.adoc b/Language/Functions/Characters/isGraph.adoc index 7db84e3..3d04cad 100644 --- a/Language/Functions/Characters/isGraph.adoc +++ b/Language/Functions/Characters/isGraph.adoc @@ -71,7 +71,7 @@ else -- [float] -=== See also +=== Ver Também [role="language"] * #LINGUAGEM# link:../../../variables/data-types/char[char]