From aae880b32a6717cc661a62679bad2494983f5681 Mon Sep 17 00:00:00 2001 From: Aman Bangad Date: Fri, 2 Jun 2017 09:50:33 -0400 Subject: [PATCH] Typo fix --- .../05-native-prototypes/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/05-native-prototypes/article.md b/1-js/07-object-oriented-programming/05-native-prototypes/article.md index 949e2d57..6c29c7f1 100644 --- a/1-js/07-object-oriented-programming/05-native-prototypes/article.md +++ b/1-js/07-object-oriented-programming/05-native-prototypes/article.md @@ -156,7 +156,7 @@ function showArgs() { */!* } -showList("John", "Pete", "Alice"); // John - Pete - Alice +showArgs("John", "Pete", "Alice"); // John - Pete - Alice ``` Because `join` resides in `Array.prototype`, we can call it from there directly and rewrite it as: