소스 검색

fix plugin docs: no longer splitting src and pkg deps in state

pull/31/head
Tristan Sloughter 10 년 전
부모
커밋
c705f9eff9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      doc/plugins.md

+ 1
- 1
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}.

불러오는 중...
취소
저장