Skip to content

Commit

Permalink
docs: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GrayJack committed Jan 17, 2025
1 parent 943ca8c commit 94495db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
bitflag_attr = "0.9.0"
bitflag-attr = "0.9.0"
```

and this to your source code:
Expand Down Expand Up @@ -92,7 +92,7 @@ enum Flags {
- [X] Generated end-user API almost entirely the same to `bitflags` crate
- [X] Most of the generated type-associated API is `const`-compatible (entirely if `const-mut-ref` feature flag enabled)
- [X] Debug formatter outputs both the binary representation and named flag representation
- [X] Optional support for serialization with
- [X] Optional support for serialization with the `serde` feature flag
- [X] Compatible with `#[no_std]`

### Implemented traits
Expand Down
2 changes: 1 addition & 1 deletion bitflags-attr-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ proc-macro = true

[dependencies]
syn = { version = "2", features = [
"clone-impls",
"full",
"parsing",
"printing",
"proc-macro",
"clone-impls",
], default-features = false }
quote = { version = "1", default-features = false }
proc-macro2 = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! bitflag_attr = "0.9.0"
//! bitflag-attr = "0.9.0"
//! ```
//!
//! ## Generating flags type
Expand Down

0 comments on commit 94495db

Please sign in to comment.