aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br
diff options
context:
space:
mode:
authorMatheus Felipe <50463866+matheusfelipeog@users.noreply.github.com>2021-09-06 07:46:41 -0300
committerGitHub <noreply@github.com>2021-09-06 07:46:41 -0300
commitff15e541c61feb0b8089981ab869e50e1506b918 (patch)
tree85078d2e096d3d3fbbfeb39147c2f36d17e43305 /files/pt-br
parent7a81eb11fc15e0e333f59d04aaa48e5a2dc9acd8 (diff)
downloadtranslated-content-ff15e541c61feb0b8089981ab869e50e1506b918.tar.gz
translated-content-ff15e541c61feb0b8089981ab869e50e1506b918.tar.bz2
translated-content-ff15e541c61feb0b8089981ab869e50e1506b918.zip
Fixed parameters of console.time and console.timeEnd (#2273)
* Update index.html * Fix param of console.time method * Fix param of console.timeEnd method
Diffstat (limited to 'files/pt-br')
-rw-r--r--files/pt-br/web/api/console/index.html6
-rw-r--r--files/pt-br/web/api/console/time/index.html4
-rw-r--r--files/pt-br/web/api/console/timeend/index.html4
3 files changed, 7 insertions, 7 deletions
diff --git a/files/pt-br/web/api/console/index.html b/files/pt-br/web/api/console/index.html
index ee79abeab4..9c0f5eaa00 100644
--- a/files/pt-br/web/api/console/index.html
+++ b/files/pt-br/web/api/console/index.html
@@ -52,9 +52,9 @@ translation_of: Web/API/Console
<p> </p>
<dl>
- <dt>{{domxref("console.time()", "console.time(name)")}}</dt>
- <dd>Inicia um contador de tempo com o nome especificado no parâmetro <em>name</em>. Até 10.000 contadores de tempo podem ser rodados por página.</dd>
- <dt>{{domxref("console.timeEnd()", "console.timeEnd(name)")}}</dt>
+ <dt>{{domxref("console.time()", "console.time(label)")}}</dt>
+ <dd>Inicia um contador de tempo com o nome especificado no parâmetro <em>label</em>. Até 10.000 contadores de tempo podem ser rodados por página.</dd>
+ <dt>{{domxref("console.timeEnd()", "console.timeEnd(label)")}}</dt>
<dd>Interrompe o contador de tempo especificado e emite o tempo e registros do contador de tempo em milisegundos desde o seu início. Veja {{anch("Contadores de Tempo")}}.</dd>
<dt>{{domxref("console.trace()")}}</dt>
<dd>Emite um traçado de pilha. See {{anch("Traçados de pilha")}}.</dd>
diff --git a/files/pt-br/web/api/console/time/index.html b/files/pt-br/web/api/console/time/index.html
index a246f83984..a63c85d0b7 100644
--- a/files/pt-br/web/api/console/time/index.html
+++ b/files/pt-br/web/api/console/time/index.html
@@ -15,13 +15,13 @@ translation_of: Web/API/Console/time
<h2 id="Syntax" name="Syntax">Sintaxe</h2>
-<pre class="syntaxbox">console.time(<em>cronometroNome</em>);
+<pre class="syntaxbox">console.time(<em>label</em>);
</pre>
<h2 id="Parâmetros">Parâmetros</h2>
<dl>
- <dt><code>cronometroNome</code></dt>
+ <dt><code>label</code></dt>
<dd>O nome para dar ao novo cronômetro. Ele identificará o cronômetro; use o mesmo quando chamar {{ domxref("console.timeEnd()") }} para parar o cronômetro e obter o tempo na saída do console.</dd>
</dl>
diff --git a/files/pt-br/web/api/console/timeend/index.html b/files/pt-br/web/api/console/timeend/index.html
index 2758d32e45..2a758b8532 100644
--- a/files/pt-br/web/api/console/timeend/index.html
+++ b/files/pt-br/web/api/console/timeend/index.html
@@ -18,13 +18,13 @@ translation_of: Web/API/Console/timeEnd
<h2 id="Syntax" name="Syntax">Sintaxe</h2>
-<pre class="syntaxbox">console.timeEnd(<var>timerName</var>);
+<pre class="syntaxbox">console.timeEnd(<var>label</var>);
</pre>
<h3 id="Parametros">Parametros</h3>
<dl>
- <dt><code>timerName</code></dt>
+ <dt><code>label</code></dt>
<dd>O nome do temporizador a ser interrompido. Uma vez interrompido, o tempo decorrido é automaticamente apresentado no <a href="/en-US/docs/Tools/Web_Console" title="Web Console">Web Console</a>.</dd>
</dl>