From f56a478377d3750425391b646c8fcc6c3319f941 Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Mon, 24 Aug 2015 21:52:33 -0700 Subject: [PATCH] book: Fix spacing in testing section --- src/doc/trpl/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/testing.md b/src/doc/trpl/testing.md index 9143d10cfa1b..2911cf60375f 100644 --- a/src/doc/trpl/testing.md +++ b/src/doc/trpl/testing.md @@ -221,7 +221,7 @@ some known arguments and compare it to the expected output. # The `ignore` attribute -Sometimes a few specific tests can be very time-consuming to execute. These +Sometimes a few specific tests can be very time-consuming to execute. These can be disabled by default by using the `ignore` attribute: ```rust