From c705f9eff96f7e35cb9c23ec683b03e4e7641b7b Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sat, 29 Nov 2014 17:52:21 -0600 Subject: fix plugin docs: no longer splitting src and pkg deps in state --- doc/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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}. -- cgit v1.1