You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2023/06/07 16:07:37 UTC

[jmeter] branch master updated: doc: use PR# references instead of Pull request # in the docs to make changelog cleaner

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 8fe60243b3 doc: use PR#<num> references instead of Pull request #<num> in the docs to make changelog cleaner
8fe60243b3 is described below

commit 8fe60243b3c879087f8b20dec361eb6aa1be005a
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Wed Jun 7 19:06:55 2023 +0300

    doc: use PR#<num> references instead of Pull request #<num> in the docs to make changelog cleaner
---
 xdocs/stylesheets/website-style.xsl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xdocs/stylesheets/website-style.xsl b/xdocs/stylesheets/website-style.xsl
index 9832f58a93..ac1fa44a49 100644
--- a/xdocs/stylesheets/website-style.xsl
+++ b/xdocs/stylesheets/website-style.xsl
@@ -568,14 +568,14 @@
 
   <xsl:template match="pr">
     <a href="https://github.com/apache/jmeter/pull/{./text()}">
-      Pull request #<xsl:value-of select="./text()" />
+      PR#<xsl:value-of select="./text()" />
     </a>
     <xsl:call-template name="issue_separator"/>
   </xsl:template>
 
   <xsl:template match="issue">
     <a href="https://github.com/apache/jmeter/issues/{./text()}">
-      Issue #<xsl:value-of select="./text()" />
+      Issue#<xsl:value-of select="./text()" />
     </a>
     <xsl:call-template name="issue_separator"/>
   </xsl:template>