-
-
Notifications
You must be signed in to change notification settings - Fork 509
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 #3811
Fix typos #3811
Conversation
@@ -95,7 +95,7 @@ | |||
|
|||
val goodRecommendations = mutableListOf<RecommendedServerInfo>() | |||
val badRecommendations = mutableListOf<RecommendedServerInfo>() | |||
val greatRecommendaton = jellyfin.discovery.getRecommendedServers(addressCandidates).firstOrNull { recommendedServer -> | |||
val greatRecommendation = jellyfin.discovery.getRecommendedServers(addressCandidates).firstOrNull { recommendedServer -> |
Check warning
Code scanning / detekt
Line detected, which is longer than the defined maximum line length in the code style. Warning
@@ -158,7 +158,7 @@ | |||
} | |||
} | |||
|
|||
public CharSequence gettitle() { | |||
public CharSequence getTitle() { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -204,7 +204,7 @@ | |||
} | |||
|
|||
// this makes focus movements more predictable for the grid view | |||
public static void setFocusParms(LinearLayout currentRow, LinearLayout otherRow, boolean up) { | |||
public static void setFocusParams(LinearLayout currentRow, LinearLayout otherRow, boolean up) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -204,7 +204,7 @@ | |||
} | |||
|
|||
// this makes focus movements more predictable for the grid view | |||
public static void setFocusParms(LinearLayout currentRow, LinearLayout otherRow, boolean up) { | |||
public static void setFocusParams(LinearLayout currentRow, LinearLayout otherRow, boolean up) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
Changes
I fixed typos I was able to spot/find using typos CLI/Android Studio's Typo inspection.
One file was renamed. I hope it won't cause merge conflicts :)