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 2021/01/27 15:04:28 UTC

[royale-docs] branch master updated: Update localsharedobject.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 b6a86eb  Update localsharedobject.md
b6a86eb is described below

commit b6a86eb5d36a73141f53c584b39513c4911cc008
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Wed Jan 27 11:04:23 2021 -0400

    Update localsharedobject.md
    
    Fixed text issues Rick Mills noted
---
 features/loading-external-data/localsharedobject.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/features/loading-external-data/localsharedobject.md b/features/loading-external-data/localsharedobject.md
index 509e974..3f3c851 100644
--- a/features/loading-external-data/localsharedobject.md
+++ b/features/loading-external-data/localsharedobject.md
@@ -39,7 +39,7 @@ Instead of using cookies, your Royale application can use Local Shared Objects (
 
 ## Implementations
 
-Apache Royalecurrently has two implementations of Local Shared Object:
+Apache Royale currently has two implementations of Local Shared Object:
 
 - **SharedObject**: An emulation class to support the swf based Local Shared Object. This implementation supports AMF encoded content (requires `[RemoteClass]` or `registerClassAlias` before reading and writing to roundtrip instances of custom classes).
 
@@ -82,7 +82,7 @@ The `getLocal()` method has three parameters:
 | Parameter     | Required  | Description                                                                   |
 |--------------	|----------	| -----------------------------------------------------------------------------	|
 | __name__    	| Yes       | Assigns a name to the Local Shared Object.                                    |
-| __localPath__ | No        | You can use it if many components in the same application may be accessing the same Local Shared Object, rather than accessing the object your created in the app. |
+| __localPath__ | No        | You can use it if many components in the same application may be accessing the same Local Shared Object, rather than accessing the object you created in the app. |
 | __secure__    | No        | If you create it, future calls to this Local Shared Object must use HTTPS.    |
 
 ## Access and update Local Shared Object values