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 0187460 Update jewel-hcontainer.md
0187460 is described below
commit 0187460ce908aa8f168c2475c3489d900451ca51
Author: Andrew Wetmore <[email protected]>
AuthorDate: Fri Oct 2 17:43:46 2020 -0300
Update jewel-hcontainer.md
Minor text edits
---
component-sets/jewel/jewel-hcontainer.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/component-sets/jewel/jewel-hcontainer.md
b/component-sets/jewel/jewel-hcontainer.md
index 33ca60c..1f00db5 100644
--- a/component-sets/jewel/jewel-hcontainer.md
+++ b/component-sets/jewel/jewel-hcontainer.md
@@ -35,7 +35,7 @@ Available since version __0.9.7__.
## Overview
-The Jewel HContainer class is a [Container](component-sets/jewel/container)
that layout elements horizontaly and provide some properties to allow more
flexibility like `gap` to define some spacing between items, or
`itemsHorizontalAlign` and `itemsVerticalAlign`, to distribute elements in
different ways along horizontal and vertical axis respectively.
+The Jewel HContainer class is a [Container](component-sets/jewel/container)
that lays out elements horizontally and provides some properties to allow more
flexibility like `gap` to define spacing between items, and
`itemsHorizontalAlign` and `itemsVerticalAlign`, to distribute elements in
different ways along the horizontal or vertical axis.
## Example of use
@@ -97,9 +97,9 @@ where `parent` is the container where the HContainer will be
added.
## Relevant Events
-The most important event is `initComplete`, which indicates that the
initialization of the container is complete.
+The most important event is `initComplete`, which indicates that
initialization of the container is complete.
-Is needed when some action coded in a callback function need to be triggered
as the container is ready to use after initialization.
+It is needed when some action coded in a callback function needs to be
triggered when the container is ready to use after initialization.
You can attach callback listeners to the _initComplete_ event in __MXML__ as
follows:
@@ -107,7 +107,7 @@ You can attach callback listeners to the _initComplete_
event in __MXML__ as fol
<j:HContainer initComplete="initCompleteHandler(event)"/>
```
-the _initComplete_ event will use the `initCompleteHandler` callback function
you provide in __ActionScript__:
+the _initComplete_ event uses the `initCompleteHandler` callback function you
provide in __ActionScript__:
```mxml
<fx:Script>