-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tracking Issue] Docs Enhancement: Documentation lacking API features. #376
Comments
Hi, can I try this? |
Hi, @moisesPompilio! Yes. |
Is it best to make a huge PR fixing everything or smaller PRs? And, if it be a huge PR, is it better to open a draft so the reviewers can check as it goes? Also, did you mean lacking instead of leaking? @jaoleal |
Maybe we could "divide and conquer" @moisesPompilio . Like, we divide the crates between ourselves and then open two PRs without conflicting to avoid rework and speed up things... we have a lot of ground to cover. What do you think? |
@lucad70, see CONTRIBUTING.md/commits. At the end (when PR is merged/closed), i think @Davidson-Souza will join them. |
@lucad70, tiny ones... Look #375, for example. Ill not be surprised if this issue, after completed, produces more than I referenced #375 as a example(edited after @lucad70 comment) because this type of changes raise some old decisions inside this project that doesnt make sense anymore... And it happened on #375.
Yes, thank you. |
Got it! Thanks. I'll be working on it 👍🏼 |
The Floresta project has some deficiencies about code documentation and heres two of them:
Wrong imports (Good First Issue).
cargo docs
sometimes doesnt know which components to show in a module/crate page because we didnt export them explicitly.This can happen
reading carefully the module, you'll notice that
sync_node.rs
andchain_selector
are missing.Adding
Will expose the modules to
cargo docs
and make them appear on the crate documentation "home-page".Modules Lacking Documentation.
Right in the example there's a module like
running_node.rs
that doesn't have any documentation shown and in its code we have some so, by adding:will make the docs appear on the
floresta-wire
"home-page".How to close this issue
Tiny and Precise PRs like #375
The text was updated successfully, but these errors were encountered: