diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-11-29 17:52:21 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-11-29 17:52:21 -0600 |
commit | c705f9eff96f7e35cb9c23ec683b03e4e7641b7b (patch) | |
tree | 052ce4989abbcf8b4fb551d35e6b9afdcbcd0edf | |
parent | fc2089aecf94ed018c1c8c60a43a0e3ce323da13 (diff) |
fix plugin docs: no longer splitting src and pkg deps in state
-rw-r--r-- | doc/plugins.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plugins.md b/doc/plugins.md index ae43355..c8afc91 100644 --- a/doc/plugins.md +++ b/doc/plugins.md @@ -220,7 +220,7 @@ And then we can implement the switch to figure out what to search: do(State) -> Apps = case discovery_type(State) of project -> rebar_state:project_apps(State); - deps -> rebar_state:project_apps(State) ++ rebar_state:src_deps(State) + deps -> rebar_state:project_apps(State) ++ rebar_state:all_deps(State) end, lists:foreach(fun check_todo_app/1, Apps), {ok, State}. |