summaryrefslogtreecommitdiff
path: root/Examples/ocaml
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2004-11-02 22:13:39 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2004-11-02 22:13:39 +0000
commit3ef946d2d143b22a88bd8d52b9b5819a4b9cdf44 (patch)
tree8cd92297a92ee0edff20d908ca048407651bbc26 /Examples/ocaml
parent0dc3099ead575d7ceba45022c13958de29642444 (diff)
downloadswig-3ef946d2d143b22a88bd8d52b9b5819a4b9cdf44.tar.gz
html fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6632 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/ocaml')
-rw-r--r--Examples/ocaml/simple/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/ocaml/simple/index.html b/Examples/ocaml/simple/index.html
index 9638708cc..4f5329204 100644
--- a/Examples/ocaml/simple/index.html
+++ b/Examples/ocaml/simple/index.html
@@ -32,7 +32,7 @@ double Foo = 3.0;
int gcd(int x, int y) {
int g;
g = y;
- while (x > 0) {
+ while (x &gt; 0) {
g = x;
x = y % x;
y = g;