Skip to content
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

Fix up some docs issues #309

Merged
merged 1 commit into from Mar 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -134,7 +134,7 @@
//!
//! # What's implemented by `bitflags!`
//!
//! The `bitflags!` trait adds some trait implementations and inherent methods
//! The `bitflags!` macro adds some trait implementations and inherent methods
//! to generated flags types, but leaves room for you to choose the semantics
//! of others.
//!
Expand Down Expand Up @@ -344,7 +344,7 @@
//! ```

#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![doc(html_root_url = "https://docs.rs/bitflags/2.0.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/bitflags/2.0.0")]
#![forbid(unsafe_code)]

#[doc(inline)]
Expand Down