From 9927e41729c033ee5c9bf940ee85f140b7cdb819 Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 24 May 2017 05:09:45 -0400 Subject: [PATCH] 'initializer' typo in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8201123..bcaf51b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Usage: ```javascript var ga = require('react-google-analytics'); -var GAInitiailizer = ga.Initializer; +var GAInitializer = ga.Initializer; // Use the initializer to add the script to your page somewhere. var MyComponent = React.createClass({ @@ -16,7 +16,7 @@ var MyComponent = React.createClass({ return (
// SNIP - + // SNIP
);