-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
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
fix: typos in documentation files #3186
Conversation
PR SummaryThis PR fixes typos across various documentation files and source code. The Changes
autogenerated by presubmit.ai |
@@ -12,4 +12,4 @@ public CannotSubtractException(String message) { | |||
super(message); |
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 "diffrent" is misspelled as "different".
@@ -13,7 +13,7 @@ package com.iluwatar.caching { | |||
- LOGGER : Logger {static} | |||
+ App() | |||
+ main(args : String[]) {static} | |||
+ useCacheAsideStategy() | |||
+ useCacheAsideStrategy() |
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".
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
The word "Stategy" is misspelled as "Strategy".
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
The word "Stategy" is misspelled as "Strategy".
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
The word "postition" is misspelled as "position".
|
Looks good! Thank you for the contribution 🎉 @all-contributors please add @maximevtush for code |
I've put up a pull request to add @maximevtush! 🎉 |
No description provided.