From 2dcf63c6465da0c0209627d10474a46615f836dd Mon Sep 17 00:00:00 2001 From: Sanket Date: Sat, 27 Jan 2018 20:30:15 -0500 Subject: [PATCH] fixed typo in abstract factory pattern --- abstract-factory/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abstract-factory/README.md b/abstract-factory/README.md index 1c1966739..25b63f7a2 100644 --- a/abstract-factory/README.md +++ b/abstract-factory/README.md @@ -142,7 +142,7 @@ Use the Abstract Factory pattern when * Dependency injection in java hides the service class dependencies that can lead to runtime errors that would have been caught at compile time. ## Tutorial -* [Abstract Factory Method Tutorial](https://www.journaldev.com/1418/abstract-factory-design-pattern-in-java) +* [Abstract Factory Pattern Tutorial](https://www.journaldev.com/1418/abstract-factory-design-pattern-in-java) ## Real world examples