You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by an...@apache.org on 2021/01/27 14:47:46 UTC

[royale-docs] branch master updated: Update metadata.md

This is an automated email from the ASF dual-hosted git repository.

andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 97dc0ec  Update metadata.md
97dc0ec is described below

commit 97dc0eca35c14439fbe74fdf3397d072e2c10ec1
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Wed Jan 27 10:47:39 2021 -0400

    Update metadata.md
    
    Fixed typos noted by Rick Mills
---
 features/actionscript/metadata.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/features/actionscript/metadata.md b/features/actionscript/metadata.md
index 898bc36..714adf7 100644
--- a/features/actionscript/metadata.md
+++ b/features/actionscript/metadata.md
@@ -33,7 +33,7 @@ An example in **AS3** of a `Bindable` Metadata declaration decorating a variable
 public var someVariable:Boolean = true;
 ```
 
-In **MXML* and example of an `Event` Metadata declared for that MXML file will be the following. Notice that you need to add to the special `fx:Metadata` tag:
+In **MXML* an example of an `Event` Metadata declared for that MXML file will be the following. Notice that you need to add to the special `fx:Metadata` tag:
 
 ```mxml
 <fx:Metadata>
@@ -57,7 +57,7 @@ Event
 
 The default property used when additional MXML content appears within an element's definition in an MXML file.
 
-For example, [Jewel Group](component-sets/jewel/group) define `[DefaultProperty("mxmlContent")]` in its class code. When using this component, instead of writting:
+For example, [Jewel Group](component-sets/jewel/group) defines `[DefaultProperty("mxmlContent")]` in its class code. When using this component, instead of writting:
 
 ```mxml
 <j:Group>
@@ -67,7 +67,7 @@ For example, [Jewel Group](component-sets/jewel/group) define `[DefaultProperty(
 </j:Group>
 ```
 
-we can simplify declaration removing `mxmlContent` tags saving several lines of code:
+we can simplify declarations by removing `mxmlContent` tags saving several lines of code:
 
 ```mxml
 <j:Group>
@@ -153,4 +153,4 @@ In AS3 you can use metadata as well in methods and properties of the class.
 
 ## Custom Metadata
 
-You can create your own custom metadata. This info will come soon...
\ No newline at end of file
+You can create your own custom metadata. This info will come soon...