Skip to content

Commit

Permalink
Fixed typo in documentation example (#30)
Browse files Browse the repository at this point in the history
Using `workspaces('example')->repositories()` throws an exception.
  • Loading branch information
shanecp authored Nov 21, 2021
1 parent 1e80eb1 commit e2a50c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Bitbucket::setDefaultConnection('alternative'); // the default is now alternativ
Bitbucket::repositories()->list();

// Get all the repositories info filtered by workspace
Bitbucket::workspaces('example')->repositories()->list();
Bitbucket::repositories()->workspaces('example')->list();
```

If you prefer to use dependency injection over facades like me, then you can easily inject the manager like so:
Expand Down

0 comments on commit e2a50c8

Please sign in to comment.