Skip to content

Commit

Permalink
Merge pull request #37 from l4u/patch-1
Browse files Browse the repository at this point in the history
Remove semi-colons in README
  • Loading branch information
hzalaz committed Jul 23, 2015
2 parents 295cbe8 + 23179a7 commit b154414
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ auth0 = Auth0Client.new(
:client_id => "YOUR CLIENT ID",
:client_secret => "YOUR CLIENT SECRET",
:domain => "<YOUR ACCOUNT>.auth0.com"
);
)

puts auth0.get_users;
puts auth0.get_users
```

Using [APIv2](https://auth0.com/docs/apiv2)
Expand All @@ -42,9 +42,9 @@ auth0 = Auth0Client.new(
:api_version => 2,
:token => "YOUR JWT HERE",
:domain => "<YOUR ACCOUNT>.auth0.com"
);
)

puts auth0.get_users;
puts auth0.get_users
```


Expand Down

0 comments on commit b154414

Please sign in to comment.