Skip to content

Commit ee0a13e

Browse files
committed
Typos
1 parent 262a5f3 commit ee0a13e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ with support for rendering SQL formatted properly for MyBatis3 and Spring's Name
1414

1515
The library also contains extensions for Kotlin that enable an idiomatic Kotlin DSL for SQL.
1616

17-
The library will generate full DELETE, INSERT, SELECT, and UPDATE statements. The DSL implementd by the
17+
The library will generate full DELETE, INSERT, SELECT, and UPDATE statements. The DSL implemented by the
1818
library is very similar to native SQL but it includes many functions that allow for very dynamic SQL statements.
1919
For example, a typical search can be coded with a query like this (the following code is Kotlin, but Java code is very similar):
2020

@@ -37,8 +37,8 @@ This query does quite a lot...
3737
1. It is a search with three search criteria - any combination of search criteria can be used
3838
1. Only records with an active status will be returned
3939
1. If `id` is specified, it will be padded to length 5 with '0' at the beginning of the string
40-
1. If `firstName` is specified, it will be used in a case insensitive search and SQL wildcards will be appended
41-
1. If `lastName` is specified, it will be used in a case insensitive search and SQL wildcards will be appended
40+
1. If `firstName` is specified, it will be used in a case-insensitive search and SQL wildcards will be appended
41+
1. If `lastName` is specified, it will be used in a case-insensitive search and SQL wildcards will be appended
4242
1. The query results are limited to 500 rows
4343

4444
Using the dynamic SQL features of the library eliminates a lot of code that would be required for checking nulls, adding wild cards, etc. This query clearly expresses the intent of the search in just a few lines.

0 commit comments

Comments
 (0)