diff options
author | Samuel Felipe Castro Fernandes <78573679+samuelfcf@users.noreply.github.com> | 2021-12-19 21:04:50 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 21:04:50 -0300 |
commit | bdb0cc5f2183963d00be9ac9470c94fc65d7fb6b (patch) | |
tree | e4e9fd5c2690e4e982329895fbab4b917dfd8d9c /files/pt-br/learn | |
parent | 2b26ab4ac6ce73735d49f2fdf12a74080a9e35b1 (diff) | |
download | translated-content-bdb0cc5f2183963d00be9ac9470c94fc65d7fb6b.tar.gz translated-content-bdb0cc5f2183963d00be9ac9470c94fc65d7fb6b.tar.bz2 translated-content-bdb0cc5f2183963d00be9ac9470c94fc65d7fb6b.zip |
grammar writing update (#3352)
Co-authored-by: julieng <julien.gattelier@gmail.com>
Diffstat (limited to 'files/pt-br/learn')
-rw-r--r-- | files/pt-br/learn/javascript/objects/object_prototypes/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/learn/javascript/objects/object_prototypes/index.html b/files/pt-br/learn/javascript/objects/object_prototypes/index.html index a781e65a04..4ab77254db 100644 --- a/files/pt-br/learn/javascript/objects/object_prototypes/index.html +++ b/files/pt-br/learn/javascript/objects/object_prototypes/index.html @@ -221,7 +221,7 @@ Person.prototype.farewell = function() { <pre class="brush: js">Person.prototype.fullName = 'Bob Smith';</pre> -<p>sso não é muito flexível, pois a pessoa pode não ser chamada assim. Seria muito melhor construir o <code>fullName</code> fora do <code>name.first</code> e <code>name.last</code>:</p> +<p>Isso não é muito flexível, pois a pessoa pode não ser chamada assim. Seria muito melhor construir o <code>fullName</code> fora do <code>name.first</code> e <code>name.last</code>:</p> <pre class="brush: js">Person.prototype.fullName = this.name.first + ' ' + this.name.last;</pre> |