Skip to content

Commit e150ba7

Browse files
Fix typos (#43)
1 parent cad97dd commit e150ba7

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ npm install moesifapi
3535

3636
See `test/ApiControllerTest.js` for more usage examples.
3737

38-
The following examples demonstrate the basid operations using this library. In these examples, replace _`YOUR_COLLECTOR_APPLICATION_ID`_ with your [Moesif Application ID](#get-your-moesif-application-id)
38+
The following examples demonstrate the basic operations using this library. In these examples, replace _`YOUR_COLLECTOR_APPLICATION_ID`_ with your [Moesif Application ID](#get-your-moesif-application-id)
3939

4040
### Create a single API event
4141

@@ -212,7 +212,6 @@ api.createEventsBatch(events, function(error, response, context) {
212212

213213
To create or update a [user](https://www.moesif.com/docs/getting-started/users/) profile in Moesif, use the `updateUser()` function.
214214

215-
216215
```javascript
217216
var moesifapi = require('moesifapi');
218217
var apiClient = moesifapi.ApiController;
@@ -474,7 +473,7 @@ apiClient.sendAction(new ActionModel(action), function(error, response, context)
474473

475474
The `metadata` field can contain any optional metadata about the Action you want to store. Moesif only requires the `actionName` and `request` fields.
476475

477-
This method is a convenient helper that calls the Moesif API library. For more information, see the function documentation in [Moesif Node.js API reference](https://www.moesif.com/docs/api?int_source=docs#track-a-custom-action).
476+
This method is a convenient helper that calls the Moesif API library. For more information, see the function documentation in [Moesif API reference](https://www.moesif.com/docs/api?int_source=docs#track-a-custom-action).
478477

479478
### Add a batch of Actions
480479

@@ -545,7 +544,15 @@ apiClient.sendActionsBatch(actions, function(error, response, context) {
545544

546545
The `metadata` field can contain any optional metadata about the Action you want to store. Moesif only requires the `actionName` and `request` fields.
547546

548-
This method is a convenient helper that calls the Moesif API library. For more information, see the function documentation in [Moesif Node.js API reference](https://www.moesif.com/docs/api?int_source=docs#track-custom-actions-in-batch).
547+
This method is a convenient helper that calls the Moesif API library. For more information, see the function documentation in [Moesif API reference](https://www.moesif.com/docs/api?int_source=docs#track-custom-actions-in-batch).
548+
549+
## Troubleshoot
550+
For a general troubleshooting guide that can help you solve common problems, see [Server Troubleshooting Guide](https://www.moesif.com/docs/troubleshooting/server-troubleshooting-guide/).
551+
552+
Other troubleshooting supports:
553+
554+
- [FAQ](https://www.moesif.com/docs/faq/)
555+
- [Moesif support email](mailto:support@moesif.com)
549556

550557
## How to test
551558

0 commit comments

Comments
 (0)