Skip to content

Commit ae19fca

Browse files
Fixing typos
1 parent 2fad4c7 commit ae19fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/adapter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Adapter Pattern
22

3-
Let say we have a simple interface like a `Logger`
3+
Let's say we have a simple interface like a `Logger`
44

55
```java
66
interface Logger {
@@ -25,7 +25,7 @@ interface Logger2 {
2525
```
2626

2727
and we want to use that new interface `Logger2` with the method `sayHello()`.
28-
Obviously, we can not directly call `sayHello` with a `Logger2`, we need to do an adaptation work.
28+
Obviously, we can not directly call `sayHello` with a `Logger2`, we need to do adaptation work.
2929

3030
## Adapter when we do not control Logger2
3131

0 commit comments

Comments
 (0)