From 04ade731d1b2b1209e734c6998693571c4fefac2 Mon Sep 17 00:00:00 2001 From: blyxyas Date: Thu, 6 Apr 2023 01:04:37 +0200 Subject: [PATCH] Remove non-contextual section in "Develop Lints with Tests" + typo --- book/src/development/writing_tests.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/book/src/development/writing_tests.md b/book/src/development/writing_tests.md index 83e00c2ee131..a01a5ccae62d 100644 --- a/book/src/development/writing_tests.md +++ b/book/src/development/writing_tests.md @@ -3,10 +3,7 @@ Developing lints for Clippy is a Test-Driven Development (TDD) process because our first task before implementing any logic for a new lint is to write some test cases. -## Develop Lint with Tests - -It is not necessarily that every Clippy developer enjoys having the compiler screaming -test failures in their face. Some embrace TDD *while* others learn to peacefully co-exist with it. +## Develop Lints with Tests When we develop Clippy, we enter a complex and chaotic realm full of programmatic issues, stylistic errors, illogical code and non-adherence to convention.