Skip to content

Commit

Permalink
Fix readme typos
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcgee-mac committed Feb 24, 2021
1 parent ae55a8b commit a6c1304
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ a method.
+ "FROM bar WHERE "
+ "bar.baz = :baz;")
NormStatementt<p, r>() {
}.executeQuery(dbConn))
}.executeQuery(dbConn)
.forEach(r -> System.out.println(r.foo));
}
```
Expand Down Expand Up @@ -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));
}
}
}
Expand All @@ -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) );
}
```

Expand Down

0 comments on commit a6c1304

Please sign in to comment.