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:03:45 UTC

[royale-docs] branch master updated: Update data-model.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 041e069  Update data-model.md
041e069 is described below

commit 041e069d5f4a96fbd40232ca2e9d0b5596eb903a
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Feb 5 16:03:40 2021 +0100

    Update data-model.md
    
    update commitService.source to commitsService.url = "https://api.github.com/repos/" + repos[currentIndex] + "/commits"; as exposed by David Slotemaker on list
---
 create-an-application/application-tutorial/data-model.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/create-an-application/application-tutorial/data-model.md b/create-an-application/application-tutorial/data-model.md
index a39ad06..7ff27a3 100644
--- a/create-an-application/application-tutorial/data-model.md
+++ b/create-an-application/application-tutorial/data-model.md
@@ -84,7 +84,7 @@ private var currentIndex:int = 0;
 private function fetchCommits():void
 {
   commitsService.addEventListener("complete", gotCommits);
-  commitsService.source = repos[currentIndex];
+  commitsService.url = "https://api.github.com/repos/" + repos[currentIndex] + "/commits";
   commitsService.send();
 }