diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-12-06 23:00:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-12-06 23:00:58 -0500 |
commit | 7f3bf38e8db9288d92f2864be4f66b14adf80971 (patch) | |
tree | 57c5d31876ba50c1674736493f58d9ab4e59474b /doc/plugin-group-provider.markdown | |
parent | 5c84996ee7140e2cff1d8e18fb9482e8a4c020a8 (diff) |
Fix typo in documentation
Diffstat (limited to 'doc/plugin-group-provider.markdown')
-rw-r--r-- | doc/plugin-group-provider.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugin-group-provider.markdown b/doc/plugin-group-provider.markdown index b62ecaa6..4d73b740 100644 --- a/doc/plugin-group-provider.markdown +++ b/doc/plugin-group-provider.markdown @@ -14,7 +14,7 @@ Group Provider Workflow 1. The end-user start to type the group name in the auto-complete field 2. The `GroupManager` class will execute the query across all registered group providers -3. Results are merged an returned to the user interface +3. Results are merged and returned to the user interface 4. After selecting a group, the information of the group are synced to the local database if necessary Group Provider Interface @@ -35,7 +35,7 @@ Group Backend Provider Interface Interface to implement: `Kanboard\Core\Group\GroupBackendProviderInterface`. -This interface require only one method: `find($input)`. +This interface requires only one method: `find($input)`. The argument `$input` is the text entered from the user interface. This method must return a list of `GroupProviderInterface`, this is the result of the search. |