From 22ae3ffdcfc9438769c7558f6168ce90c122540d Mon Sep 17 00:00:00 2001 From: Adam Tuttle Date: Tue, 25 Oct 2016 11:44:44 -0400 Subject: [PATCH] Fix typo in readme setCaseSensitiveEventNames should be setCaseSensitiveEventName --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1db01e..f673ed3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ To dispatch an event: emit.emit('myEventName', {optional struct of data}); ``` -Note: Event names are case sensitive by default. You can call setCaseSensitiveEventNames(false) to change this. +Note: Event names are case sensitive by default. You can call `setCaseSensitiveEventName(false)` to change this. Most functions return an instance of the object so that they can be chained.