From 4846215bb190d67451c157ea1b27fc77b4fc7f90 Mon Sep 17 00:00:00 2001 From: zealotous Date: Thu, 8 Nov 2012 18:00:35 +0400 Subject: [PATCH] Update README.md typo in Modules paragraph. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1df1293619..fff2c040f2 100644 --- a/README.md +++ b/README.md @@ -1096,7 +1096,7 @@ - The module should start with a `!`. This ensures that if a malformed module forgets to include a final semicolon there aren't errors in production when the scripts get concatenated. - The file should be named with camelCase, live in a folder with the same name, and match the name of the single export. - Add a method called noConflict() that sets the exported module to the previous version. - - Always declare `'use strict;'` at the top of the module. + - Always declare `'use strict';` at the top of the module. ```javascript // fancyInput/fancyInput.js