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-configuration.git
The following commit(s) were added to refs/heads/master by this push:
new 39399bf50 Format tweak for example on site
39399bf50 is described below
commit 39399bf50b88c453e0ac7fcbb5deb2ac9b4cc8f9
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 15:31:36 2025 -0500
Format tweak for example on site
---
src/site/xdoc/userguide/howto_compositeconfiguration.xml | 2 +-
src/site/xdoc/userguide_v1.10/howto_compositeconfiguration.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/site/xdoc/userguide/howto_compositeconfiguration.xml
b/src/site/xdoc/userguide/howto_compositeconfiguration.xml
index 83d3a2acd..798f7cc44 100644
--- a/src/site/xdoc/userguide/howto_compositeconfiguration.xml
+++ b/src/site/xdoc/userguide/howto_compositeconfiguration.xml
@@ -104,7 +104,7 @@ PropertiesConfiguration config = builder.getConfiguration();
for (Iterator<String> i = changes.getKeys(); i.hasNext()){
String key = i.next();
Object value = changes.get(key);
- config.setProperty(key,value);
+ config.setProperty(key, value);
}
]]></source>
</p>
diff --git a/src/site/xdoc/userguide_v1.10/howto_compositeconfiguration.xml
b/src/site/xdoc/userguide_v1.10/howto_compositeconfiguration.xml
index 9515d1655..35c03fbdd 100644
--- a/src/site/xdoc/userguide_v1.10/howto_compositeconfiguration.xml
+++ b/src/site/xdoc/userguide_v1.10/howto_compositeconfiguration.xml
@@ -90,7 +90,7 @@ DatabaseConfiguration config = new
DatabaseConfiguration(datasource, "configurat
for (Iterator<String> i = changes.getKeys(); i.hasNext()){
String key = i.next();
Object value = changes.get(key);
- config.setProperty(key,value);
+ config.setProperty(key, value);
}
]]></source>
</p>