diff options
author | Alex Raizman <[email protected]> | 2015-02-20 22:39:03 -0800 |
---|---|---|
committer | Alex Raizman <[email protected]> | 2015-02-20 22:39:03 -0800 |
commit | b85c1f726ca49ac0e3abdcf717317cb95b06207d (patch) | |
tree | e3697bebbd8277caa131ff4cfcbc8e4f66509be8 | |
parent | ea2de24f18741fc89d7a1dd6a3a0a43f3ccb1fd4 (diff) | |
download | gun-b85c1f726ca49ac0e3abdcf717317cb95b06207d.tar.gz gun-b85c1f726ca49ac0e3abdcf717317cb95b06207d.tar.bz2 gun-b85c1f726ca49ac0e3abdcf717317cb95b06207d.zip |
Update gun.md
Fixing simple copy-paste mistake.
-rw-r--r-- | manual/gun.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/gun.md b/manual/gun.md index 3baa1f7..611abf0 100644 --- a/manual/gun.md +++ b/manual/gun.md @@ -153,7 +153,7 @@ Exports > > Delete a resource. -### get(ServerPid, Path) -> delete(ServerPid, Path, []) +### get(ServerPid, Path) -> get(ServerPid, Path, []) ### get(ServerPid, Path, Headers) -> StreamRef > Types: @@ -164,7 +164,7 @@ Exports > > Fetch a resource. -### head(ServerPid, Path) -> delete(ServerPid, Path, []) +### head(ServerPid, Path) -> head(ServerPid, Path, []) ### head(ServerPid, Path, Headers) -> StreamRef > Types: @@ -177,7 +177,7 @@ Exports > > The server will not send the resource content, only headers. -### options(ServerPid, Path) -> delete(ServerPid, Path, []) +### options(ServerPid, Path) -> options(ServerPid, Path, []) ### options(ServerPid, Path, Headers) -> StreamRef > Types: |