mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Typos.
This commit is contained in:
parent
6ff8e13a6b
commit
9339da0339
2 changed files with 2 additions and 2 deletions
|
@ -7,6 +7,6 @@ class JavaBuildGenerator: BuildGenerator() {
|
|||
override val defaultTestDirectories = hashSetOf("src/test/java")
|
||||
override val directive = "project"
|
||||
override val templateName = "java"
|
||||
override val templateDescription = "Generates a simple Java project"
|
||||
override val templateDescription = "Generate a simple Java project"
|
||||
override val fileMatch = { f: String -> f.endsWith(".java") }
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ class KotlinBuildGenerator : BuildGenerator() {
|
|||
override val defaultTestDirectories = hashSetOf("src/test/kotlin")
|
||||
override val directive = "project"
|
||||
override val templateName = "kotlin"
|
||||
override val templateDescription = "Generates a simple Kotlin project"
|
||||
override val templateDescription = "Generate a simple Kotlin project"
|
||||
override val fileMatch = { f: String -> f.endsWith(".kt") }
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue