-
Notifications
You must be signed in to change notification settings - Fork 34
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
rust: add rustdoc descriptions to the public API and tiny improvements for crates.io #589
Conversation
@@ -0,0 +1,5 @@ | |||
# Fizzy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is what will be visible on crates.io
Codecov Report
@@ Coverage Diff @@
## master #589 +/- ##
=========================================
Coverage ? 98.23%
=========================================
Files ? 62
Lines ? 9023
Branches ? 0
=========================================
Hits ? 8864
Misses ? 159
Partials ? 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overlapped with #587
I know, I would merge this first. |
Please combine these 2 PRs to avoid the noise. |
What noise? |
@@ -2,10 +2,15 @@ | |||
// Copyright 2019-2020 The Fizzy Authors. | |||
// SPDX-License-Identifier: Apache-2.0 | |||
|
|||
//! This is a Rust interface to [Fizzy](https://github.com/wasmx/fizzy), a WebAssembly virtual machine. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the difference between //!
and ///
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//!
is the description shown on the top of docs.rust.rs, while ///
is the doxygen compatible description for syntactical elements. So basically //!
stuff becomes the "README" for the documentation.
No description provided.