You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2021/02/05 15:06:49 UTC

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

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

carlosrovira 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 5aac517  Update build.md
5aac517 is described below

commit 5aac517e2691c093e1eee7913dfc86de06575c86
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Feb 5 16:06:44 2021 +0100

    Update build.md
    
    Update js:VView to js:View
---
 create-an-application/application-tutorial/build.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/create-an-application/application-tutorial/build.md b/create-an-application/application-tutorial/build.md
index 2a6b9ba..dc0b0b8 100644
--- a/create-an-application/application-tutorial/build.md
+++ b/create-an-application/application-tutorial/build.md
@@ -90,7 +90,7 @@ The main *MXML* file should now look like this:
     <js:HTTPService id="commitsService" />
 
     <js:initialView>
-        <js:VView>
+        <js:View>
             <js:Label text="{projectName} Commits Log"/>
             <js:DataGrid id="dg">
                 <js:columns>
@@ -101,7 +101,7 @@ The main *MXML* file should now look like this:
             </js:DataGrid>
             <js:Label text="Selected Message:"/>
             <js:MultilineLabel text="{commits[dg.selectedIndex].message}" />
-        </js:VView>
+        </js:View>
     </js:initialView>
 </js:Application>
 ```