diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2012-10-21 22:10:56 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-10-21 22:11:36 -0400 |
commit | cc95db359c8b935699173ec921ba9316c762aea5 (patch) | |
tree | e2bd8e916a91faa7df49ee404b98f8e5be047bc9 /doc | |
parent | 65eef9d817d3db2ae7c61cd02075d46cf7bd9f90 (diff) |
doc: Fix typo in generated section header
We were generating headers such as 'Events provided by wl_display events',
drop the last 'events'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Wayland/protocol-to-docbook.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Wayland/protocol-to-docbook.xsl b/doc/Wayland/protocol-to-docbook.xsl index b76dbd8..ca00efb 100644 --- a/doc/Wayland/protocol-to-docbook.xsl +++ b/doc/Wayland/protocol-to-docbook.xsl @@ -71,13 +71,13 @@ </xsl:if> <xsl:if test="event"> <section> - <title>Events provided by <xsl:value-of select="@name" /> events</title> + <title>Events provided by <xsl:value-of select="@name" /></title> <xsl:apply-templates select="event" /> </section> </xsl:if> <xsl:if test="enum"> <section> - <title>Enums provided by <xsl:value-of select="@name" /> enums</title> + <title>Enums provided by <xsl:value-of select="@name" /></title> <xsl:apply-templates select="enum" /> </section> </xsl:if> |