summaryrefslogtreecommitdiff
path: root/documentation/classes-and-objects.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 13:09:35 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 13:09:35 +0100
commit7a494ae990bee99886cb0f597f4287a586850ecf (patch)
treea494c7d9a4be4970a1f387a6fe7c55269108c586 /documentation/classes-and-objects.html
parentf226fa0472d1fd169635d9619f6c1ac137620c19 (diff)
changes to documentation
Diffstat (limited to 'documentation/classes-and-objects.html')
-rw-r--r--documentation/classes-and-objects.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/classes-and-objects.html b/documentation/classes-and-objects.html
index aab5468..63c9665 100644
--- a/documentation/classes-and-objects.html
+++ b/documentation/classes-and-objects.html
@@ -255,7 +255,7 @@ extern "C" {
<h2>Abstract and final</h2>
<p>
In the previous section we showed how to use the Php::Final and Php::Abstract
- modifiers to create a final or abstract method. If you want to make your entire
+ flags to create a final or abstract method. If you want to make your entire
class abstract or final, you can do so by using Php::FinalClass or
Php::AbstractClass instead of Php::Class.
</p>
@@ -281,7 +281,7 @@ extern "C" {
It may seem strange that you have to pass in the address of a real C++ method
when you mark a method as being abstract. Abstract methods do normally not
have an implementation, so what do you need this C++ implementation for?
- Luckily, we also have a different way for registering abstract methods.
+ Luckily, there also is a different way for registering abstract methods.
</p>
<p>
<pre class="language-c++"><code>