diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2004-11-02 22:13:39 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2004-11-02 22:13:39 +0000 |
commit | 3ef946d2d143b22a88bd8d52b9b5819a4b9cdf44 (patch) | |
tree | 8cd92297a92ee0edff20d908ca048407651bbc26 /Examples/python/simple | |
parent | 0dc3099ead575d7ceba45022c13958de29642444 (diff) | |
download | swig-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/python/simple')
-rw-r--r-- | Examples/python/simple/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/python/simple/index.html b/Examples/python/simple/index.html index 9638708cc..4f5329204 100644 --- a/Examples/python/simple/index.html +++ b/Examples/python/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 > 0) { g = x; x = y % x; y = g; |