From 180dfb48f7f5a3681f8782241a8d48858d689052 Mon Sep 17 00:00:00 2001 From: Landon Gray Date: Mon, 29 Apr 2024 11:58:30 -0400 Subject: [PATCH] Fix grammar --- adapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter.md b/adapter.md index fc8ae16..3041269 100644 --- a/adapter.md +++ b/adapter.md @@ -1,7 +1,7 @@ # Adapter Pattern ## Problem -We want an object talk to some other object but their interfaces don't match. +We want an object to talk to some other object but their interfaces don't match. ## Solution We simply wrap the **adaptee** with our new **adapter** class. This class implements an interface that the invoker understands, although all the work is performed by the adapted object.