You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/02/07 08:37:23 UTC

[maven-checkstyle-plugin] branch master updated: (docs) Fix tag in config snippet

This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 9eb82dd  (docs) Fix </build> tag in config snippet
9eb82dd is described below

commit 9eb82dde355a8a8f34798cd5c49e810e4eda2c8d
Author: Christopher Goh <ch...@gmail.com>
AuthorDate: Mon Feb 7 16:21:29 2022 +0800

    (docs) Fix </build> tag in config snippet
    
    `<build>`'s closing tag was missing a `/`.
---
 src/site/apt/examples/upgrading-checkstyle.apt.vm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/site/apt/examples/upgrading-checkstyle.apt.vm b/src/site/apt/examples/upgrading-checkstyle.apt.vm
index fb5c0b8..d5b3a0d 100644
--- a/src/site/apt/examples/upgrading-checkstyle.apt.vm
+++ b/src/site/apt/examples/upgrading-checkstyle.apt.vm
@@ -1,7 +1,7 @@
  ------
  Upgrading Checkstyle at Runtime
  ------
- 2015-01-18
+ 2022-02-07
  ------
 
 ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -53,7 +53,7 @@ Upgrading Checkstyle at Runtime
         </plugin>
       </plugins>
     </pluginManagement>
-  <build>
+  </build>
   ...
 </project>
 +-----+