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 2020/10/01 16:30:00 UTC

[royale-docs] branch master updated: Update jewel-view.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 00ecfcf  Update jewel-view.md
00ecfcf is described below

commit 00ecfcf60885cf33a1dda64c9ace29d28c3ceced
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Thu Oct 1 13:29:49 2020 -0300

    Update jewel-view.md
    
    minor text edits
---
 component-sets/jewel/jewel-view.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/component-sets/jewel/jewel-view.md b/component-sets/jewel/jewel-view.md
index e28bee3..546e9a8 100644
--- a/component-sets/jewel/jewel-view.md
+++ b/component-sets/jewel/jewel-view.md
@@ -35,7 +35,7 @@ Available since version __0.9.4__.
 
 ## Overview
 
-The View class is the class used as the `initialView` in a Royale Jewel [Application](component-sets/jewel/application). It is generally used as the root tag of __MXML__ documents and UI controls and containers are added to it.
+The View class is used as the `initialView` in a Royale Jewel [Application](component-sets/jewel/application). It is generally used as the root tag of __MXML__ documents and UI controls and containers are added to it.
 
 For responsive applications you can use [ResponsiveView](component-sets/jewel/responsiveview) instead.
 
@@ -107,7 +107,7 @@ where `application` is the Jewel Application.
 
 The most important event is `initComplete`, which indicates that the initialization of the view is complete.
 
-Is needed when some action coded in a callback function need to be triggered as the view is ready to use after initialization.
+It is needed when some action coded in a callback function needs to be triggered when the view is ready to use after initialization.
 
 You can attach callback listeners to the _initComplete_ event in __MXML__ as follows:
 
@@ -151,7 +151,7 @@ v.addEventListener('initComplete', initCompleteHandler);
 
 ### Common Beads
 
-Jewel `View` can use any of the layout beads available in Jewel library. Also you can check [Related controls](component-sets/jewel/view.html#related-controls) section to see some preconfigured views with specific layouts.
+Jewel `View` can use any of the layout beads available in the Jewel library. You can also check [Related controls](component-sets/jewel/view.html#related-controls) to see some preconfigured views with specific layouts.
 
 ## More examples