In the rebar documentation, it says that making documentation supports an option called edoc_opts, which accepts options accepted by the edoc module.
In the module's description of the get_doc/2 function, it says it accepts a proplist of options, including {private, true} to generate private documentation.
In my Makefile, I have the following:
docs:
rebar skip_deps=true edoc_opts=[{private, true}] doc
However, rebar complains, saying that the command "true}]" is not understood or applicable.
What is the correct way to get rebar to generate private documentation?