Skip to content

Commit 971dba5

Browse files
committed
Clear up confusion in readme.md about initializing mixpanel
Resolve Issue kuhnza#13
1 parent b649e33 commit 971dba5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ angular.module('myApp', ['analytics.mixpanel']);
2929
Minimally you'll need to configure your API key like so:
3030

3131
```javascript
32-
angular.module('analytics.mixpanel')
32+
angular.module('myApp')
3333
.config(['$mixpanelProvider', function($mixpanelProvider) {
3434
$mixpanelProvider.apiKey('<your project token>'); // your token is different than your API key
3535
}]);
@@ -38,7 +38,7 @@ Minimally you'll need to configure your API key like so:
3838
You can also supply [super properties](https://mixpanel.com/help/reference/javascript#super-properties):
3939

4040
```javascript
41-
angular.module('analytics.mixpanel')
41+
angular.module('myApp')
4242
.config(['$mixpanelProvider', function($mixpanelProvider) {
4343
$mixpanelProvider.apiKey('<your project token>'); // your token is different than your API key
4444

0 commit comments

Comments
 (0)