From 7eb7b785134aeae27c37c557a2342e8ee48242ad Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Sat, 30 Jan 2016 10:42:33 +0530 Subject: [PATCH] Minor typo Remove extra dot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70eae719..a0f492a9 100644 --- a/README.md +++ b/README.md @@ -683,7 +683,7 @@ Other Style Guides > Why? It creates a version of the function that executes in the context of `this`, which is usually what you want, and is a more concise syntax. - > Why not? If you have a fairly complicated function, you might move that logic out into its own function declaration.. + > Why not? If you have a fairly complicated function, you might move that logic out into its own function declaration. ```javascript // bad