summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 09:50:10 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 09:50:10 +0100
commit9df186180f25313d2182ef7a0bb807875888892c (patch)
tree723d667aef52ef4e57ea252bb780145f651490aa /documentation
parent01fa31d24d6669ee30ccb897a0a7f438bcbe59f0 (diff)
added serializable class (but not yet implemented it)
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();
?&gt;
</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() {}