Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for Cookie docs (#828)
  • Loading branch information
fakedarren committed Feb 8, 2010
1 parent 29ab0d3 commit 5c93814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Docs/Utilities/Cookie.md
Expand Up @@ -97,7 +97,7 @@ Remove a Cookie:
Creating a Cookie and Removing it Right Away:

var myCookie = Cookie.write('username', 'Aaron', {domain: 'mootools.net'});
if (Cookie.read('username') == 'Aaron') { Cookie.dispose(myCookie); }
if (Cookie.read('username') == 'Aaron') { myCookie.dispose(); }



Expand Down

0 comments on commit 5c93814

Please sign in to comment.