Skip to content

Commit

Permalink
fix wrong function names in README.md (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyQQQQ authored and ziflex committed Jul 1, 2019
1 parent 9d45d52 commit a5d422c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,10 @@ LET doc = DOCUMENT("https://www.google.com", {
]
})
COOKIES_SET(doc, { name: "baz", value: "qaz"}, { name: "daz", value: "gag" })
COOKIES_DEL(doc, "foo")
COOKIE_SET(doc, { name: "baz", value: "qaz"}, { name: "daz", value: "gag" })
COOKIE_DEL(doc, "foo")
LET c = COOKIES_GET(doc, "baz")
LET c = COOKIE_GET(doc, "baz")
FOR cookie IN doc.cookies
RETURN cookie.name
Expand Down

0 comments on commit a5d422c

Please sign in to comment.