Skip to content

Commit a947370

Browse files
committed
Minor fixes to readmes
1 parent 3f09fb7 commit a947370

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

abstract-factory/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ Example use cases
213213

214214
## Related patterns
215215

216-
[Factory Method](https://java-design-patterns.com/patterns/factory-method/)
217-
[Factory Kit](https://java-design-patterns.com/patterns/factory-kit/)
216+
* [Factory Method](https://java-design-patterns.com/patterns/factory-method/)
217+
* [Factory Kit](https://java-design-patterns.com/patterns/factory-kit/)
218218

219219
## Credits
220220

async-method-invocation/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ callbacks or waiting until everything is done.
2020
## Applicability
2121
Use async method invocation pattern when
2222

23-
* you have multiple independent tasks that can run in parallel
24-
* you need to improve the performance of a group of sequential tasks
25-
* you have limited amount of processing capacity or long running tasks and the
23+
* You have multiple independent tasks that can run in parallel
24+
* You need to improve the performance of a group of sequential tasks
25+
* You have limited amount of processing capacity or long running tasks and the
2626
caller should not wait the tasks to be ready
2727

2828
## Real world examples
2929

30-
* [FutureTask](http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/FutureTask.html), [CompletableFuture](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html) and [ExecutorService](http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html) (Java)
31-
* [Task-based Asynchronous Pattern](https://msdn.microsoft.com/en-us/library/hh873175.aspx) (.NET)
30+
* [FutureTask](http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/FutureTask.html)
31+
* [CompletableFuture](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html)
32+
* [ExecutorService](http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html)
33+
* [Task-based Asynchronous Pattern](https://msdn.microsoft.com/en-us/library/hh873175.aspx)

0 commit comments

Comments
 (0)