From 46b17a5c53f9921ddbc15ecb41c8cf80e2b49acc Mon Sep 17 00:00:00 2001 From: NihalSingh07 <65119860+NihalSingh07@users.noreply.github.com> Date: Thu, 1 Oct 2020 00:32:03 +0530 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da5f495..cada5d6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # kotlin-core -This package is not Android-specific, and can be used across platforms. However, for a good example of use in Android, take a look at [kotlin-components-starter](https://github.com/UnknownJoe796/kotlin-components-starter). +This package is not Android-specific and can be used across platforms. However, for a good example of use in Android, take a look at [kotlin-components-starter](https://github.com/UnknownJoe796/kotlin-components-starter). This package is meant to contain a collection of useful extensions on both the standard library and the Java standard library. @@ -17,7 +17,7 @@ This package is meant to contain a collection of useful extensions on both the s ## Overall Philosophy -*Minimality:* When possible, these libraries don't create new structure. Instead, they use extension functions to let you use current objects and classes in a more convenient and expected way. +*Minimality:* When possible, these libraries don't create a new structure. Instead, they use extension functions to let you use current objects and classes in a more convenient and expected way. *Complete reuse:* Everything that is commonly used should be included, preferably as an inline extension function to reduce the app's method count.