Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adapter.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down