From 1c56d4cdda5e398842c8093d127ef2eefd1d43b7 Mon Sep 17 00:00:00 2001 From: Aakash Pal Date: Wed, 19 Jan 2022 17:19:43 -0500 Subject: [PATCH] fix: remove double space (#44837) * fix: typo in javascript-algorithms-and-data-structures > object-oriented-programming > understand-own-properties * revert all the files with translations * fix last commit error and remove changes from translated files --- .../object-oriented-programming/understand-own-properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/understand-own-properties.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/understand-own-properties.md index b9d96a71ec..2eb048692a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/understand-own-properties.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/understand-own-properties.md @@ -12,7 +12,7 @@ In the following example, the `Bird` constructor defines two properties: `name` ```js function Bird(name) { - this.name = name; + this.name = name; this.numLegs = 2; }