From f1205a3bb5f4310d115e9a0dfc8416c71d40e514 Mon Sep 17 00:00:00 2001 From: Emile Date: Fri, 10 Nov 2023 10:46:52 +0100 Subject: [PATCH] Update notes.md --- clean-code/notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clean-code/notes.md b/clean-code/notes.md index b51f268..5b385b1 100644 --- a/clean-code/notes.md +++ b/clean-code/notes.md @@ -84,8 +84,8 @@ Author: Robert C. Martin # Ch1. Clean Code > "Most managers want good code, even when they are obsessing about the schedule (...) It's *your* job to defend the code with equal passion" -- Clean code is *focused*: each function, each class, each module exposes a single-minded attitude that remains entirely undistracted, and upolluted, by the surrounding details -- Code, without tests, is not clean. No matter how elegant it is, no matter how readable and accessible, if it hath not tests, it be unclean +- Clean code is *focused*: each function, each class, each module exposes a single-minded attitude that remains entirely undistracted, and unpolluted, by the surrounding details +- Code, without tests, is not clean. No matter how elegant it is, no matter how readable and accessible, if it has not tests, it be unclean - You will read it, and it will be pretty much what you expected. It will be obvious, simple, and compelling ## Reading vs. Writing