Remove duplicate words in reference manual

Found using regular expression: \b(\w+)\s+\1\b
This commit is contained in:
Sam Brannen
2022-12-18 10:46:30 +01:00
parent f8a58f2bc4
commit d2b54e2611
2 changed files with 2 additions and 2 deletions

View File

@@ -6825,7 +6825,7 @@ The following query uses a bind variable:
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
.Kotlin
----
val first = client.sql("SELECT id, name FROM person WHERE WHERE first_name = :fn")
val first = client.sql("SELECT id, name FROM person WHERE first_name = :fn")
.bind("fn", "Joe")
.fetch().awaitSingle()
----