From c131f05b8b3d0b3d9949e775677c2c3f454c66e0 Mon Sep 17 00:00:00 2001 From: Nic Capdevila Date: Tue, 9 Oct 2018 21:40:58 -0300 Subject: [PATCH] Update article.md --- 1-js/05-data-types/03-string/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/03-string/article.md b/1-js/05-data-types/03-string/article.md index 67667573..b3e3029a 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -132,7 +132,7 @@ Note that `\n` is a single "special" character, so the length is indeed `3`. ```warn header="`length` is a property" People with a background in some other languages sometimes mistype by calling `str.length()` instead of just `str.length`. That doesn't work. -Please note that `str.length` is a numeric property, not a function. There is no need to add brackets after it. +Please note that `str.length` is a numeric property, not a function. There is no need to add parenthesis after it. ``` ## Accessing characters