This is an automated email from the ASF dual-hosted git repository.
aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-docs.git
The following commit(s) were added to refs/heads/develop by this push:
new 0cc34e8 this needs to be bracket access as well
0cc34e8 is described below
commit 0cc34e8d7c780328689959291a8aefce73789a1d
Author: Alex Harui <[email protected]>
AuthorDate: Tue Feb 6 08:29:19 2018 -0800
this needs to be bracket access as well
---
create-an-application/application-tutorial/value-objects.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/create-an-application/application-tutorial/value-objects.md
b/create-an-application/application-tutorial/value-objects.md
index 86e0c7e..50e06ac 100644
--- a/create-an-application/application-tutorial/value-objects.md
+++ b/create-an-application/application-tutorial/value-objects.md
@@ -84,7 +84,7 @@ Another way to prevent the Google Closure Compiler from
renaming variables is to
data.author = authorObj["name"];
// clip date after yyyy-mm-dd
data.date = authorObj["date"].substr(0, 10);
- data.message = commitObj.message;
+ data.message = commitObj["message"];
commits.push(data);
}
```
--
To stop receiving notification emails like this one, please contact
[email protected].