From 39d99ea6e600e37678275b0ca74b70bf93512154 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 9 Jul 2020 22:51:04 +0200 Subject: [PATCH] Improve settings wording --- src/librustdoc/html/render.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 17c1d1c7fd6d..5dcd9ebbdd09 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -1289,9 +1289,9 @@ fn settings(root_path: &str, suffix: &str) -> String { .into(), ("auto-hide-attributes", "Auto-hide item attributes.", true).into(), ("auto-hide-method-docs", "Auto-hide item methods' documentation", false).into(), - ("auto-hide-trait-implementations", "Auto-hide trait implementations documentation", true) + ("auto-hide-trait-implementations", "Auto-hide trait implementation documentation", true) .into(), - ("auto-collapse-implementors", "Auto-collapse implementors", true).into(), + ("auto-collapse-implementors", "Auto-hide implementors of a trait", true).into(), ("go-to-only-result", "Directly go to item in search if there is only one result", false) .into(), ("line-numbers", "Show line numbers on code examples", false).into(),