Skip to content

Commit

Permalink
Fixed Lungo.Data Namespace to Lungo.Cache
Browse files Browse the repository at this point in the history
  • Loading branch information
soyjavi committed Jul 12, 2013
1 parent 33367c1 commit 56d3761
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ object: Value asigned to the key.
*Example*
``` javascript
var framework = {name: "Lungo", twitter: "lungojs"};
Lungo.Data.Cache.set("lungoFramework", framework);
Lungo.Cache.set("lungoFramework", framework);
```


Expand All @@ -621,7 +621,7 @@ This method **return** an object containing the value.

*Example*
``` javascript
var cachedFramework = Lungo.Data.Cache.get("lungoFramework");
var cachedFramework = Lungo.Cache.get("lungoFramework");
//Result: {name: "Lungo", twitter: "lungojs"}
```

Expand All @@ -637,7 +637,7 @@ string: [OPTIONAL] Subkey in LungoJS Cache System.

*Example*
``` javascript
Lungo.Data.Cache.remove("lungoFramework");
Lungo.Cache.remove("lungoFramework");
```


Expand All @@ -652,7 +652,7 @@ This method **return** a boolean value which is true if the key is found

*Example*
``` javascript
Lungo.Data.Cache.exists("lungoFramework");
Lungo.Cache.exists("lungoFramework");
```


Expand Down

0 comments on commit 56d3761

Please sign in to comment.