This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git
The following commit(s) were added to refs/heads/master by this push:
new 71bfca8 Format tweak for example on site
71bfca8 is described below
commit 71bfca833f077e19e7d97f0232ebe387ab6723c4
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 15:32:39 2025 -0500
Format tweak for example on site
---
src/site/xdoc/examples.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/site/xdoc/examples.xml b/src/site/xdoc/examples.xml
index ddd59eb..639f487 100644
--- a/src/site/xdoc/examples.xml
+++ b/src/site/xdoc/examples.xml
@@ -114,7 +114,7 @@ try
{
// Execute the SQL update statement and return the number of
// inserts that were made
- int inserts = run.update( "INSERT INTO Person (name,height) VALUES (?,?)",
+ int inserts = run.update( "INSERT INTO Person (name, height) VALUES (?,
?)",
"John Doe", 1.82 );
// The line before uses varargs and autoboxing to simplify the code