Skip to content

Commit

Permalink
Merge pull request #659 from jsoref/spelling
Browse files Browse the repository at this point in the history
Spelling
  • Loading branch information
mikepenz authored Jul 2, 2021
2 parents 4736b2f + d457620 commit f754290
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ But there are additional commands which may be helpful for various situations.
```kotlin
./gradlew exportLibraries // exists also per variant
```
Exports all libraries in a CSV format with the name, artifactId, and licenseId. And a seperate list with all licenses used, and a potential list of unmatched libraries / licenses.
Exports all libraries in a CSV format with the name, artifactId, and licenseId. And a separate list with all licenses used, and a potential list of unmatched libraries / licenses.

## Find

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<string name="library_cardsuiForAndroid_author">nadavfirm</string>
<string name="library_cardsuiForAndroid_authorWebsite">https://github.com/nadavfima</string>
<string name="library_cardsuiForAndroid_libraryName">CardsUI</string>
<string name="library_cardsuiForAndroid_libraryDescription">Google’s Now popular Cards UI has everyone fascinated. This library aims to mimick this widget.
<string name="library_cardsuiForAndroid_libraryDescription">Google’s Now popular Cards UI has everyone fascinated. This library aims to mimic this widget.
</string>
<string name="library_cardsuiForAndroid_libraryVersion">#16</string>
<string name="library_cardsuiForAndroid_libraryWebsite">https://github.com/nadavfima/cardsui-for-android</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<string name="library_paymill_repositoryLink">https://github.com/paymill/paymill-android</string>
<string name="library_paymill_classPath">com.paymill.android.api.Client</string>
<!-- License section -->
<string name="libray_paymill_licenseVersion"></string>
<string name="libray_paymill_licenseLink"></string>
<string name="libray_paymill_licenseContent"></string>
<string name="library_paymill_licenseVersion"></string>
<string name="library_paymill_licenseLink"></string>
<string name="library_paymill_licenseContent"></string>
<!-- Custom variables section -->
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!-- ClassPath for autoDetect section -->
<string name="library_sugarorm_classPath">com.orm.SugarContext</string>
<!-- License section -->
<string name="libray_sugarorm_licenseContent">
<string name="library_sugarorm_licenseContent">
Copyright © 2012 by Satya Narayan

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class FragmentActivity : AppCompatActivity() {
startActivity(intent)
}
R.id.action_minimalactivity.toLong() -> {
// create and launch an activity in minmal design without any additional modifications
// create and launch an activity in minimal design without any additional modifications
LibsBuilder()
.withFields(R.string::class.java.fields)
.withAboutMinimalDesign(true)
Expand Down
2 changes: 1 addition & 1 deletion configurations.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ext.getLocalOrGlobalProperty = { key ->
/**
* retrieves a value from the properties or falls back to the default
*/
ext.getProperyOrDefault = { key, defau ->
ext.getPropertyOrDefault = { key, defau ->
def val = null
try {
val = project.hasProperty(key) ? project.getProperty(key) : null
Expand Down

0 comments on commit f754290

Please sign in to comment.