From b180a943ba1598b1b803c4ad0340f9b2eab23d2e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 21 Feb 2019 18:53:15 +0300 Subject: [PATCH] Update solution.md --- .../06-prototype-methods/2-dictionary-tostring/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/06-prototype-methods/2-dictionary-tostring/solution.md b/1-js/07-object-oriented-programming/06-prototype-methods/2-dictionary-tostring/solution.md index 0bc1636e..a92e1790 100644 --- a/1-js/07-object-oriented-programming/06-prototype-methods/2-dictionary-tostring/solution.md +++ b/1-js/07-object-oriented-programming/06-prototype-methods/2-dictionary-tostring/solution.md @@ -28,4 +28,4 @@ alert(dictionary); // "apple,__proto__" When we create a property using a descriptor, its flags are `false` by default. So in the code above, `dictionary.toString` is non-enumerable. -See the the chapter on [Property flags and descriptors](http://javascript.info/property-descriptors) for review. +See the the chapter [](info:property-descriptors) for review.