Skip to content

Commit

Permalink
#362 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 5, 2023
1 parent 7741e0f commit 96cf86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/dynamo/mock/H2Data.java
Expand Up @@ -253,7 +253,7 @@ public void put(final String table, final Attributes attrs)
H2Data.encodeTableName(table),
attrs.keySet()
.stream()
.map((a) -> String.format("`%s`", a))
.map(a -> String.format("`%s`", a))
.collect(Collectors.joining(", ")),
Joiner.on(',').join(Collections.nCopies(attrs.size(), "?"))
)
Expand Down

0 comments on commit 96cf86e

Please sign in to comment.