mirror of
https://github.com/sam0x17/pub-fields.git
synced 2025-04-03 04:47:37 +03:00
fix incorrect description
This commit is contained in:
parent
273b3fbc1a
commit
03847c9730
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ name = "pub-fields"
|
|||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["sam0x17"]
|
||||
description = "Provides a proc macro attribute that defaults all struct fields to public unless private is prepended."
|
||||
description = "Provides a proc macro attribute that defaults all struct fields to public."
|
||||
repository = "https://github.com/sam0x17/pub-fields"
|
||||
license = "MIT"
|
||||
|
||||
|
|
|
@ -11,5 +11,5 @@ mod submod {
|
|||
|
||||
#[test]
|
||||
fn test_it() {
|
||||
let x = submod::MyStruct { a: 3, b: 4, c: 5 };
|
||||
let _x = submod::MyStruct { a: 3, b: 4, c: 5 };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue