Open aphelionz opened 4 years ago
After #392 we are now about 60% documented according to docs.rs.
If you are interested in helping out, probably easiest way to find anything to work on is to either:
cargo check
Updated the issue description with the nightly/docs.rs hints, lint recommendations.
Rust documentation can be improved overally, but mainly in two places:
Ipfs
struct, i.e. the main functions that a Rust programmer will use to interact with an IPFS nodeTo find the remaining places, uncomment src/lib.rs
#![warn(missing_docs)]
.When developing docs, the docs are catered towards https://docs.rs/ipfs distribution. This basically means generating the docs with the latest nightly (or what docs.rs is using), then running
cargo +nightly doc --workspace --no-deps --open
. We are still a bit undecided of the#![allow(private_intra_doc_links)]
but possibly leaning towards allowing it when it becomes possible with stable rust. So don't worry aboutcargo +nightly doc
warning aboutprivate_intra_doc_links
.