From 7ca70d353b933435c0f30363934aa73662632e23 Mon Sep 17 00:00:00 2001 From: Benjamin Blake Date: Sun, 12 Jan 2020 15:22:00 -0700 Subject: [PATCH] Updated "Extensions and DataExtensions" Docs Updated the new notice to make it use more imperative language (credit @NightJar) --- docs/en/02_Developer_Guides/05_Extending/01_Extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/05_Extending/01_Extensions.md b/docs/en/02_Developer_Guides/05_Extending/01_Extensions.md index 1f239b759..60b28d8fd 100644 --- a/docs/en/02_Developer_Guides/05_Extending/01_Extensions.md +++ b/docs/en/02_Developer_Guides/05_Extending/01_Extensions.md @@ -250,7 +250,7 @@ class MyMemberExtension extends DataExtension ``` [notice] -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`). +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 (`$this->owner->protectedMethod()` will not work). You also cannot access any of the source object's private properties or methods (`$this->owner->privateProperty` will not work either). [/notice] ## Checking to see if an Object has an Extension