From cdbb8df37fa09b216b253806fd8131c91848a974 Mon Sep 17 00:00:00 2001 From: Alissa Rao Date: Tue, 12 Apr 2022 03:20:04 -0700 Subject: [PATCH] Minor clarification to documentation for serialize_repr --- enumset/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enumset/src/lib.rs b/enumset/src/lib.rs index bb5f0e3..5f098f8 100644 --- a/enumset/src/lib.rs +++ b/enumset/src/lib.rs @@ -178,7 +178,7 @@ use crate::repr::EnumSetTypeRepr; /// may be used (with no effect) when building without the feature enabled: /// /// * `#[enumset(serialize_repr = "u8")]` may be used to specify the integer type used to serialize -/// the underlying bitset. +/// the underlying bitset. Any type allowed in the `repr` option may be used in this option. /// * `#[enumset(serialize_as_list)]` may be used to serialize the bitset as a list of enum /// variants instead of an integer. This requires [`Deserialize`] and [`Serialize`] be /// implemented on the enum. -- 2.44.0