From 7a65526f8f8410c0504009b3f1a75a35380cccde Mon Sep 17 00:00:00 2001 From: Nick Markwell Date: Fri, 15 Feb 2013 23:10:59 -0500 Subject: [PATCH] [001-constructors] Typo fix: DRI -> DRY. --- 001-constructors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/001-constructors.md b/001-constructors.md index b124f06..987a065 100644 --- a/001-constructors.md +++ b/001-constructors.md @@ -198,7 +198,7 @@ in an inherited class, such as: } ~~~ -Repeating the 'init~lr' definition in Add violates the Don't Repeat Yourself (DRI) +Repeating the 'init~lr' definition in Add violates the Don't Repeat Yourself (DRY) principle. Besides, if functionality is added to the base BinaryOp init~lr, it wouldn't be replicated in Add init~lr.