-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
fix: typos in documentation files #3186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,7 +133,7 @@ public static void main(final String[] args) { | |
LOGGER.info(splitLine); | ||
app.useReadThroughAndWriteBehindStrategy(); | ||
LOGGER.info(splitLine); | ||
app.useCacheAsideStategy(); | ||
app.useCacheAsideStrategy(); | ||
LOGGER.info(splitLine); | ||
} | ||
|
||
|
@@ -224,7 +224,7 @@ public void useReadThroughAndWriteBehindStrategy() { | |
/** | ||
* Cache-Aside. | ||
*/ | ||
public void useCacheAsideStategy() { | ||
public void useCacheAsideStrategy() { | ||
LOGGER.info("# CachingPolicy.ASIDE"); | ||
appManager.initCachingPolicy(CachingPolicy.ASIDE); | ||
LOGGER.info(appManager.printCacheContent()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The word "Stategy" is misspelled as "Strategy". |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,6 @@ void testReadThroughAndWriteBehindStrategy() { | |
@Test | ||
void testCacheAsideStrategy() { | ||
assertNotNull(app); | ||
app.useCacheAsideStategy(); | ||
app.useCacheAsideStrategy(); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The word "Stategy" is misspelled as "Strategy". |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package com.iluwatar; | ||
/** | ||
* An exception for when the user tries to subtract two diffrent currencies or subtract an amount he doesn't have. | ||
* An exception for when the user tries to subtract two different currencies or subtract an amount he doesn't have. | ||
*/ | ||
public class CannotSubtractException extends Exception { | ||
/** | ||
|
@@ -12,4 +12,4 @@ public CannotSubtractException(String message) { | |
super(message); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The word "diffrent" is misspelled as "different". |
||
} | ||
|
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ package com.iluwatar.updatemethod { | |
- PATROLLING_RIGHT_BOUNDING : int {static} | ||
# patrollingLeft : boolean | ||
+ Skeleton(id : int) | ||
+ Skeleton(id : int, postition : int) | ||
+ Skeleton(id : int, position : int) | ||
+ update() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The word "postition" is misspelled as "position". |
||
} | ||
class Statue { | ||
|
@@ -48,4 +48,4 @@ package com.iluwatar.updatemethod { | |
World --> "-entities" Entity | ||
Skeleton --|> Entity | ||
Statue --|> Entity | ||
@enduml | ||
@enduml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The word "Stategy" is misspelled as "Strategy".