Skip to content

Commit 09e59b8

Browse files
committed
Update README.md
1 parent e8a73f2 commit 09e59b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ client.config.serverUrl = 'http://localhost:50000';
4747
```
4848
3. You can create a new instance of the ExceptionlessClient and specify the `apiKey`, `serverUrl` or [configuration object](https://github.com/exceptionless/Exceptionless.JavaScript/blob/master/src/configuration/IConfigurationSettings.ts).
4949
```javascript
50-
var client = new ExceptionlessClient('API_KEY_HERE');
50+
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE');
5151
// or with a api key and server url.
52-
var client = new ExceptionlessClient('API_KEY_HERE', 'http://localhost:50000');
52+
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE', 'http://localhost:50000');
5353
// or with a configuration object
54-
var client = new ExceptionlessClient({
54+
var client = new exceptionless.ExceptionlessClient({
5555
apiKey: 'API_KEY_HERE',
5656
serverUrl: 'http://localhost:50000',
5757
submissionBatchSize: 100

0 commit comments

Comments
 (0)