From 48476af609a4667b475d4cfaf64d0edd1282956a Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Mon, 24 Feb 2014 10:13:11 +1300 Subject: [PATCH] Remove semicolons after function definitions --- Doc/Manual/Java.html | 2 +- Doc/Manual/Python.html | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Doc/Manual/Java.html b/Doc/Manual/Java.html index c1b42f605..3144341e1 100644 --- a/Doc/Manual/Java.html +++ b/Doc/Manual/Java.html @@ -6868,7 +6868,7 @@ int spam(double a, double b, double *out1, double *out2) { *out1 = a*10.0; *out2 = b*100.0; return status; -}; +} %} /* diff --git a/Doc/Manual/Python.html b/Doc/Manual/Python.html index 4584ff726..522412fc8 100644 --- a/Doc/Manual/Python.html +++ b/Doc/Manual/Python.html @@ -4688,8 +4688,7 @@ int spam(double a, double b, double *out1, double *out2) { *out1 = result1; *out2 = result2; return status; -}; - +}