From 86bb0853849e1216b699a6733e82170fc556645e Mon Sep 17 00:00:00 2001 From: James Turk Date: Fri, 26 Apr 2024 16:14:03 -0500 Subject: [PATCH] fix consistency in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8444a0..7a91a5a 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ A recommended order to read the files would be as follows: ## SOLID Principles -*Single Responsibility* +### Single Responsibility The most clear example of the single responsibility principle is that shapes do not draw themselves. @@ -92,7 +92,7 @@ This follows single responsibility, and gains a tangible benefit from it. (See `lines.py draw` for a bit more discussion of this.) -*Open/Closed* +### Open/Closed This principle asks that behaviors are extensible by inheritance, not requiring modification to the base classes behavior.