Skip to content

Commit 08cc50e

Browse files
author
Chandan Rai
committed
corrected typos
1 parent f0a1af0 commit 08cc50e

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

balking/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ Use the Balking pattern when
2323
but for an unknown amount of time
2424

2525
## Related patterns
26-
* Guarded Suspendion Pattern
26+
* Guarded Suspension Pattern
2727
* Double Checked Locking Pattern

event-queue/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags:
1111
---
1212

1313
## Intent
14-
Event Queue is a good pattern if You have a limited accesibility resource (for example:
14+
Event Queue is a good pattern if You have a limited accessibility resource (for example:
1515
Audio or Database), but You need to handle all the requests that want to use that.
1616
It puts all the requests in a queue and process them asynchronously.
1717
Gives the resource for the event when it is the next in the queue and in same time
@@ -22,7 +22,7 @@ removes it from the queue.
2222
## Applicability
2323
Use the Event Queue pattern when
2424

25-
* You have a limited accesibility resource and the asynchronous process is acceptable to reach that
25+
* You have a limited accessibility resource and the asynchronous process is acceptable to reach that
2626

2727
## Credits
2828

feature-toggle/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ going to phase out is never removed, causing redundant code smells and increased
2222
![alt text](./etc/feature-toggle.png "Feature Toggle")
2323

2424
## Applicability
25-
Use the Feature Toogle pattern when
25+
Use the Feature Toggle pattern when
2626

2727
* Giving different features to different users.
2828
* Rolling out a new feature incrementally.

layers/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Layers is an architectural style where software responsibilities are
2121
## Applicability
2222
Use the Layers architecture when
2323

24-
* you want clearly divide software responsibilities into differents parts of the program
24+
* you want clearly divide software responsibilities into different parts of the program
2525
* you want to prevent a change from propagating throughout the application
2626
* you want to make your application more maintainable and testable
2727

promise/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ in a synchronous way.
2727
Promise pattern is applicable in concurrent programming when some work needs to be done asynchronously
2828
and:
2929

30-
* code maintainablity and readability suffers due to callback hell.
30+
* code maintainability and readability suffers due to callback hell.
3131
* you need to compose promises and need better error handling for asynchronous tasks.
3232
* you want to use functional style of programming.
3333

@@ -44,4 +44,4 @@ and:
4444
## Credits
4545

4646
* [You are missing the point to Promises](https://gist.github.com/domenic/3889970)
47-
* [Functional style callbacks using CompleteableFuture](https://www.infoq.com/articles/Functional-Style-Callbacks-Using-CompletableFuture)
47+
* [Functional style callbacks using CompletableFuture](https://www.infoq.com/articles/Functional-Style-Callbacks-Using-CompletableFuture)

prototype/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In Java, it can be easily done by implementing `Cloneable` and overriding `clone
3636

3737
```
3838
class Sheep implements Cloneable {
39-
privage String name;
39+
private String name;
4040
public Sheep(String name) { this.name = name; }
4141
public void setName(String name) { this.name = name; }
4242
public String getName() { return name; }

tls/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Securing variables global to a thread against being spoiled by other threads. Th
1919
Use the Thread Local Storage in any of the following situations
2020

2121
* when you use class variables in your Callable / Runnable object that are not read-only and you use the same Callable instance in more than one thread running in parallel.
22-
* when you use static variables in your Callable / Runnable object that are not read-only and more than one instances of the Callable / Runnalbe may run in parallel threads.
22+
* when you use static variables in your Callable / Runnable object that are not read-only and more than one instances of the Callable / Runnable may run in parallel threads.

0 commit comments

Comments
 (0)