summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-29 17:52:21 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-29 17:52:21 -0600
commitc705f9eff96f7e35cb9c23ec683b03e4e7641b7b (patch)
tree052ce4989abbcf8b4fb551d35e6b9afdcbcd0edf /doc
parentfc2089aecf94ed018c1c8c60a43a0e3ce323da13 (diff)
fix plugin docs: no longer splitting src and pkg deps in state
Diffstat (limited to 'doc')
-rw-r--r--doc/plugins.md2
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}.