Skip to content

Commit 168aea6

Browse files
authored
Correct variable name in comment translation
The property was incorrectly referred to as usuario.nombre in the translation. Changed to user.name to reflect the actual code.
1 parent 1f49fe5 commit 168aea6

File tree

1 file changed

+1
-1
lines changed
  • 1-js/07-object-properties/01-property-descriptors

1 file changed

+1
-1
lines changed

1-js/07-object-properties/01-property-descriptors/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Object.defineProperty(user, "name", {
259259
configurable: false
260260
});
261261

262-
// No seremos capaces de cambiar usuario.nombre o sus identificadores
262+
// No seremos capaces de cambiar user.name o sus identificadores
263263
// Nada de esto funcionará:
264264
user.name = "Pedro";
265265
delete user.name;

0 commit comments

Comments
 (0)