From dfef21d759e3c9ead571344c04cb3787a88deae8 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Thu, 4 Aug 2016 10:03:06 +0100 Subject: [PATCH] Fix error in style guide --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4b004d..33a9d9a 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,9 @@ Our guide is based off the excellent [Airbnb JavaScript Style Guide](https://git $(window).on("scroll", doSomething); // good - import $ form "jquery"; + import $ from "jquery"; - $(wdinow).on("scroll", doSomething); + $(window).on("scroll", doSomething); ``` #### Comparison Operators & Equality