This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-sitetools.git
The following commit(s) were added to refs/heads/master by this push:
new 8c455ca Fix javadoc
8c455ca is described below
commit 8c455cacd4c49edad5f79ab7d432fe1287dee7f7
Author: Konrad Windszus <[email protected]>
AuthorDate: Tue Mar 31 17:49:31 2026 +0200
Fix javadoc
---
.../org/apache/maven/doxia/siterenderer/SiteRenderingContext.java | 4 +++-
.../maven/doxia/scm/siterenderer/ScmAttributesContextCustomizer.java | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git
a/doxia-site-renderer/src/main/java/org/apache/maven/doxia/siterenderer/SiteRenderingContext.java
b/doxia-site-renderer/src/main/java/org/apache/maven/doxia/siterenderer/SiteRenderingContext.java
index 08884a4..e5dbaea 100644
---
a/doxia-site-renderer/src/main/java/org/apache/maven/doxia/siterenderer/SiteRenderingContext.java
+++
b/doxia-site-renderer/src/main/java/org/apache/maven/doxia/siterenderer/SiteRenderingContext.java
@@ -497,7 +497,7 @@ public class SiteRenderingContext {
* This is a free-form map that can be used for example
* from the {@link ContextCustomizer} to cache items that can be reused
among different documents of the same site.
*
- * @return a map of attributes that can be used by renderers and templates
to customize the output, the returned map is immutable, use {@link
#addAttribute(String, Object)} to add attributes to the context
+ * @return a map of attributes, the returned map is immutable.
* @see #putAttribute(String, Object)
* @see #removeAttribute(String)
* @since 2.1.0
@@ -511,6 +511,8 @@ public class SiteRenderingContext {
* It overrides any existing value for the same key and returns the
previous value associated with the key, or {@code null}
* if there was no mapping for the key or if the map previously associated
{@code null} with the key.
*
+ * @param key the key with which the specified value is to be associated
+ * @param value the value to be associated with the specified key
* @return the previous value associated with the key, or {@code null}
* @see #getAttributes()
* @see #removeAttribute(String)
diff --git
a/doxia-site-scm-context/src/main/java/org/apache/maven/doxia/scm/siterenderer/ScmAttributesContextCustomizer.java
b/doxia-site-scm-context/src/main/java/org/apache/maven/doxia/scm/siterenderer/ScmAttributesContextCustomizer.java
index 4238a86..ed56c33 100644
---
a/doxia-site-scm-context/src/main/java/org/apache/maven/doxia/scm/siterenderer/ScmAttributesContextCustomizer.java
+++
b/doxia-site-scm-context/src/main/java/org/apache/maven/doxia/scm/siterenderer/ScmAttributesContextCustomizer.java
@@ -52,7 +52,7 @@ import org.slf4j.LoggerFactory;
* <ul>
* <li>{@value #ATTRIBUTE_NAME_SCM_MODIFIED_DATE}: the last modification date
of the file being rendered according to SCM, as a {@link java.util.Date} (if
available)</li>
* <li>{@value #ATTRIBUTE_NAME_SCM_MODIFIED_AUTHOR}: the author of the last
modification of the file being rendered according to SCM, as a {@link String}
(if available)</li>
- * <ul>
+ * </ul>
*
* @since 2.1.0
*/