From 2c90715445045ad74e199d0c78aa4d9361135dba Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sun, 5 Aug 2018 08:47:55 -0700 Subject: [PATCH] Fix test --example docs. As part of #5464 I forgot to update the help text. Closes #5177 --- src/bin/cargo/commands/test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/cargo/commands/test.rs b/src/bin/cargo/commands/test.rs index ef155b4d80e..221af84ca2f 100644 --- a/src/bin/cargo/commands/test.rs +++ b/src/bin/cargo/commands/test.rs @@ -21,8 +21,8 @@ pub fn cli() -> App { "Test only this package's library", "Test only the specified binary", "Test all binaries", - "Check that the specified examples compile", - "Check that all examples compile", + "Test only the specified example", + "Test all examples", "Test only the specified test target", "Test all tests", "Test only the specified bench target",