Skip to content

Commit cd20e7a

Browse files
committed
Minor readme fixes
1 parent 7f29c24 commit cd20e7a

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

acyclic-visitor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public class ConfigureForUnixVisitor implements ZoomVisitor {
101101
}
102102
```
103103

104-
Finally here are the visitors in action.
104+
Finally, here are the visitors in action.
105105

106106
```java
107107
var conUnix = new ConfigureForUnixVisitor();

adapter/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ tags:
1212
Wrapper
1313

1414
## Intent
15-
Convert the interface of a class into another interface the clients
16-
expect. Adapter lets classes work together that couldn't otherwise because of
17-
incompatible interfaces.
15+
Convert the interface of a class into another interface the clients expect. Adapter lets classes work together that
16+
couldn't otherwise because of incompatible interfaces.
1817

1918
## Explanation
2019

aggregator-microservices/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The user makes a single call to the aggregator service, and the aggregator then
1717
Real world example
1818

1919
> Our web marketplace needs information about products and their current inventory. It makes a call to an aggregator
20-
> service that in turn calls the product information microservice and product inventory microservice returning the
20+
> service which in turn calls the product information microservice and product inventory microservice returning the
2121
> combined information.
2222
2323
In plain words
@@ -41,7 +41,7 @@ public class Product {
4141
}
4242
```
4343

44-
Next we can introduct our `Aggregator` microservice. It contains clients `ProductInformationClient` and
44+
Next we can introduce our `Aggregator` microservice. It contains clients `ProductInformationClient` and
4545
`ProductInventoryClient` for calling respective microservices.
4646

4747
```java

0 commit comments

Comments
 (0)