From fea7d799dfcf7a2b42d8d7140acef8f95b9413cb Mon Sep 17 00:00:00 2001 From: Relentless Date: Thu, 27 Oct 2022 16:36:05 +0200 Subject: [PATCH] Fix incorrect plural typo in tests page --- src/doc/src/guide/tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/guide/tests.md b/src/doc/src/guide/tests.md index d1809a39ca7..402e8e35c95 100644 --- a/src/doc/src/guide/tests.md +++ b/src/doc/src/guide/tests.md @@ -33,7 +33,7 @@ This will run any test with `foo` in its name. `cargo test` runs additional checks as well. It will compile any examples you’ve included to ensure they still compile. It also runs documentation -tests to ensure your code samples from documentation comments compiles. +tests to ensure your code samples from documentation comments compile. Please see the [testing guide][testing] in the Rust documentation for a general view of writing and organizing tests. See [Cargo Targets: Tests] to learn more about different styles of tests in Cargo.