Fix typos

Never can remember the names of the keywords for request.
This commit is contained in:
John Miller 2015-01-31 10:32:52 -06:00
parent c30bad19a5
commit 0796ed2dce
2 changed files with 7 additions and 2 deletions

View file

@ -148,8 +148,8 @@
(list 'get-file url-or-port path)
(ein:content-url url-or-port path)
:type "PATCH"
:input (json-encode `(:path ,new-path))
:reader #'ein:json-read
:data (json-encode `(:path ,new-path))
:parser #'ein:json-read
:success (apply-partially #'update-content-path content)
:error (apply-partially #'ein-content-rename-error path))))

View file

@ -32,3 +32,8 @@
(require 'ein-contents-api)
(require 'deferred)
(defparameter *list-content-result* nil)
(defun ein-test-list-contents-1 ()
(ein:content-list-contents "" )
)