fix incorrect description

This commit is contained in:
Sam Johnson 2023-07-05 10:55:39 -04:00
parent 273b3fbc1a
commit 03847c9730
No known key found for this signature in database
GPG key ID: B0C7B1CDE21F404B
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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 };
}