From 1c3e0c88176c548d3ebaf94464de64b333adedcb Mon Sep 17 00:00:00 2001 From: Joe Pettersson Date: Fri, 23 May 2014 12:20:24 +0100 Subject: [PATCH] Add syntax highlighting to noConflict reference --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1513147..234071e0 100644 --- a/README.md +++ b/README.md @@ -1287,7 +1287,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. [Explanation](https://github.com/airbnb/javascript/issues/44#issuecomment-13063933) - 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 and returns this one. + - Add a method called `noConflict()` that sets the exported module to the previous version and returns this one. - Always declare `'use strict';` at the top of the module. ```javascript