Updated "Extensions and DataExtensions" docs

Corrected a typo and add more information to hopefully clarify the text.
This commit is contained in:
Benjamin Blake 2020-01-12 14:56:55 -07:00 committed by GitHub
parent 74f7606080
commit 61af8b00ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,7 +250,7 @@ class MyMemberExtension extends DataExtension
```
[notice]
Please note that while you can read protected properties (using `$this->owner->protectedProperty`) you cannot not call protected methods (`$this->owner->protectedMethod()`). You also cannot access any private properties or methods (So this would not work either `$this->owner->privateProperty`).
Please note that while you can read protected properties of the source object (using `$this->owner->protectedProperty`) you cannot call any of it's protected methods (So this `$this->owner->protectedMethod()` would not work). You also cannot access any of the source object's private properties or methods (So this would not work either `$this->owner->privateProperty`).
[/notice]
## Checking to see if an Object has an Extension