aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/console/timeend
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/web/api/console/timeend
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/web/api/console/timeend')
-rw-r--r--files/pt-br/web/api/console/timeend/index.html4
1 files changed, 2 insertions, 2 deletions
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>