From 6a6b5e082a118d64892e389eca2639c28ef7cf15 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Tue, 19 Sep 2023 19:48:36 +0200 Subject: [PATCH] reference/manifest: Adjust `keywords` description This adjusts the naming rules for keywords to match the implemented reality: https://github.com/rust-lang/crates.io/blob/aab95692baa0dd2374a2ab5cb2cb2d89d7b2a2eb/src/models/keyword.rs#L56-L64 --- src/doc/src/reference/manifest.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/src/reference/manifest.md b/src/doc/src/reference/manifest.md index 3b6885da6a4..5ecbe511749 100644 --- a/src/doc/src/reference/manifest.md +++ b/src/doc/src/reference/manifest.md @@ -306,9 +306,9 @@ words that would help someone find this crate. keywords = ["gamedev", "graphics"] ``` -> **Note**: [crates.io] has a maximum of 5 keywords. Each keyword must be -> ASCII text, start with a letter, and only contain letters, numbers, `_` or -> `-`, and have at most 20 characters. +> **Note**: [crates.io] allows a maximum of 5 keywords. Each keyword must be +> ASCII text, have at most 20 characters, start with an alphanumeric character, +> and only contain letters, numbers, `_`, `-` or `+`. ### The `categories` field