summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}.