summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/classes-and-objects.html4
-rw-r--r--documentation/magic-interfaces.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/documentation/classes-and-objects.html b/documentation/classes-and-objects.html
index 6bb804d..5b7c063 100644
--- a/documentation/classes-and-objects.html
+++ b/documentation/classes-and-objects.html
@@ -409,10 +409,10 @@ MyClass::static1();
// this will call PrivateClass::staticMethod()
MyClass::static2();
-// this will call regularFunction
+// this will call regularFunction()
MyClass::static3();
-// this will call PrivateClass::staticMethod
+// this will also call PrivateClass::staticMethod()
myFunction();
?>
</code></pre>
diff --git a/documentation/magic-interfaces.html b/documentation/magic-interfaces.html
index 454d93e..d793856 100644
--- a/documentation/magic-interfaces.html
+++ b/documentation/magic-interfaces.html
@@ -67,7 +67,7 @@ private:
public:
/**
- * C++ constructor and C++ destructpr
+ * C++ constructor and C++ destructor
*/
Counter() {}
virtual ~Counter() {}