* Fix the manual.

svn path=/nixos/trunk/; revision=9769
This commit is contained in:
Eelco Dolstra 2007-11-21 14:39:52 +00:00
parent 4b1ed0ded2
commit 1089c1f7fa
2 changed files with 5 additions and 6 deletions

View file

@ -75,7 +75,7 @@
<xsl:template match="string">
<!-- !!! escaping -->
"<xsl:value-of select="@value" />"
<xsl:text>"</xsl:text><xsl:value-of select="@value" /><xsl:text>"</xsl:text>
</xsl:template>
@ -85,12 +85,12 @@
<xsl:template match="bool[@value = 'true']">
true
<xsl:text>true</xsl:text>
</xsl:template>
<xsl:template match="bool[@value = 'false']">
false
<xsl:text>false</xsl:text>
</xsl:template>
@ -109,8 +109,7 @@
<xsl:for-each select="attr">
<xsl:value-of select="@name" />
<xsl:text> = </xsl:text>
<xsl:apply-templates select="*" />
<xsl:text>; </xsl:text>
<xsl:apply-templates select="*" /><xsl:text>; </xsl:text>
</xsl:for-each>
}
</xsl:template>

View file

@ -1324,7 +1324,7 @@
key to be used to connect (<varname>sshKey</varname>). The
SSH private key should not have a passphrase, and the
corresponding public key should be added to
<filename>~<replaceable>sshUser<replaceable>/authorized_keys</filename>
<filename>~<replaceable>sshUser</replaceable>/authorized_keys</filename>
on the remote machine.
";
};