diff --git a/phf/src/lib.rs b/phf/src/lib.rs index 627d3e81..e60f524b 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -83,6 +83,11 @@ extern crate std as core; /// /// Requires the `macros` feature. /// +/// Supported key expressions are: +/// - literals: bools, (byte) strings, bytes, chars, and integers (these must have a type suffix) +/// - arrays of `u8` integers +/// - `UniCase::unicode(string)` or `UniCase::ascii(string)` if the `unicase` feature is enabled +/// /// # Example /// /// ```