From 03847c97301977b71ccf51b3854fb88c5d2ae463 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Wed, 5 Jul 2023 10:55:39 -0400 Subject: [PATCH] fix incorrect description --- Cargo.toml | 2 +- tests/tests.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f3d5537..272b999 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/tests/tests.rs b/tests/tests.rs index 21d837d..244f9e0 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -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 }; }