From a6c13047c6df3beba940f9b92de3d1560967277a Mon Sep 17 00:00:00 2001 From: Chris McGee Date: Wed, 24 Feb 2021 11:22:52 -0500 Subject: [PATCH] Fix readme typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 335dbc7..1e23e1d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ a method. + "FROM bar WHERE " + "bar.baz = :baz;") NormStatementt() { - }.executeQuery(dbConn)) + }.executeQuery(dbConn) .forEach(r -> System.out.println(r.foo)); } ``` @@ -97,7 +97,7 @@ public class Outer { public void performQuery() throws Exception { STATEMENT.executeQuery(dbConn, new ReqParams().setBaz(100)) - forEach(r -> System.out.println(r.foo)); + .forEach(r -> System.out.println(r.foo)); } } } @@ -119,7 +119,7 @@ test cases for the SQL statement directly. public void testMyStatement() { Connection conn = ... Outer.STATEMENT.execute(conn, new Outer.StatementParameter().setBaz(1)) - .forEach( r -> Assert.assertEquals(1, r.baz) ); + .forEach( r -> Assert.assertEquals(1, r.baz) ); } ```