Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Fixed typos #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Will result on
version=1.2.4
```

You may specify also which version to increase: `--major`, `--minor` or `--path`
You may specify also which version to increase: `--major`, `--minor` or `--patch`

```shell
./gradlew incrementSemanticVersion --major
Expand Down Expand Up @@ -79,7 +79,7 @@ Once applied, version can access from the `android.versioning.version` property:
task("printVersion") {
doLast {
val androidVersion = project.android.versioning.version.get()
pritnln("The project current versionCode is ${androidVersion.code} and name is ${androidVersion.name}")
println("The project current versionCode is ${androidVersion.code} and name is ${androidVersion.name}")
}
}
```
Expand Down