summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2015-03-16 14:27:39 +1300
committerOlly Betts <olly@survex.com>2015-03-16 14:27:39 +1300
commit5e1faa9458e047020422470431555a2de790723c (patch)
tree6153402b5f342ae78e4e9e1308f0cf7706f07559
parentad04d858f0af5d6017ad8f766c74703998d53a1c (diff)
downloadswig-5e1faa9458e047020422470431555a2de790723c.tar.gz
Fix unescaped < in docs
-rw-r--r--Doc/Manual/Doxygen.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/Manual/Doxygen.html b/Doc/Manual/Doxygen.html
index 8b63d5b2b..769940f8d 100644
--- a/Doc/Manual/Doxygen.html
+++ b/Doc/Manual/Doxygen.html
@@ -164,8 +164,8 @@ After C\C++ expressions at the end of the line:
</p>
<div class="code"><pre>
-int someVariable = 9; ///< This is a var holding magic number 9
-void doNothing(); ///< This does nothing, nop
+int someVariable = 9; ///&lt; This is a var holding magic number 9
+void doNothing(); ///&lt; This does nothing, nop
</pre></div>
<p>
@@ -174,7 +174,7 @@ and in some special cases, like function parameter comments:
<div class="code"><pre>
void someFunction(
- int a ///< Some parameter
+ int a ///&lt; Some parameter
);
</pre></div>
@@ -185,8 +185,8 @@ or enum element comments:
<div class="code"><pre>
enum E_NUMBERS
{
- EN_ZERO, ///< The first enum item, gets zero as it's value
- EN_ONE, ///< The second, EN_ONE=1
+ EN_ZERO, ///&lt; The first enum item, gets zero as it's value
+ EN_ONE, ///&lt; The second, EN_ONE=1
EN_THREE
};
</pre></div>