From c02c9f2517f34a9850f8e297d48c87d1047a07e2 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 13 Nov 2024 14:46:11 -0600 Subject: [PATCH] docs(build-rs): Remove reference to encoding --- crates/build-rs/src/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/build-rs/src/input.rs b/crates/build-rs/src/input.rs index 51c7c8544..6f564f8c6 100644 --- a/crates/build-rs/src/input.rs +++ b/crates/build-rs/src/input.rs @@ -494,7 +494,7 @@ pub fn cargo_pkg_version_pre() -> Option { to_opt(var_or_panic("CARGO_PKG_VERSION_PRE")).map(to_string) } -/// Colon separated list of authors from the manifest of your package. +/// The authors from the manifest of your package. #[track_caller] pub fn cargo_pkg_authors() -> Vec { to_strings(var_or_panic("CARGO_PKG_AUTHORS"), ':')