diff --git a/lib/src/main/kotlin/konnik/json/JsonParser.kt b/lib/src/main/kotlin/konnik/json/JsonParser.kt
index 34e538a..6b5f4cd 100644
--- a/lib/src/main/kotlin/konnik/json/JsonParser.kt
+++ b/lib/src/main/kotlin/konnik/json/JsonParser.kt
@@ -124,7 +124,7 @@ private fun lazy(parser: () -> Parser): Parser = { input ->
}
/**
- * Combine to parsers into one that concatenates the results of the
+ * Combine two parsers into one that concatenates the results of the
* individual parsers into one string.
*/
private operator fun Parser.plus(parserB: Parser): Parser =
@@ -443,4 +443,4 @@ private fun _jsonValue() = lazy { jsonValue }
/**
* The main JSON parser corresponding to the top level rule in the grammar.
*/
-private val json: Parser = element
\ No newline at end of file
+private val json: Parser = element