diff --git a/README.md b/README.md index 072842c..6963de8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The adapter is a direct stateless interface with Challonge, with no frills, you' ### Example - Retrieving a list of tournaments with the TournamentAdapter The following returns the direct raw response from the Challonge API ``` -import { TournamentAdapter } from 'challonge-ts'; +import { TournamentAdapter } from '@nuel/challonge-ts'; const test = async () => { const data = await TournamentAdapter.index('api_key'); @@ -28,7 +28,7 @@ Devised as a nicer abstraction over the adapter, this is a set of classes which ### Example - Retrieving a list of tournaments with the Challonge class ``` -import { Challonge } from 'challonge-ts'; +import { Challonge } from '@nuel/challonge-ts'; const test = async () => { const challonge = new Challonge('api_key') @@ -52,4 +52,4 @@ To regenerate the API nock files, delete the `tests/adapter/__nock-fixtures__` f Ensure you have `gulp-cli` installed locally, then run `npm run build`. Hopefully it goes all right with no errors! :) ## Merging with master -After you have run the tests, and built the project, your repo should be good to go for merging with master! \ No newline at end of file +After you have run the tests, and built the project, your repo should be good to go for merging with master!