mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Fix typos
Never can remember the names of the keywords for request.
This commit is contained in:
parent
c30bad19a5
commit
0796ed2dce
2 changed files with 7 additions and 2 deletions
|
@ -148,8 +148,8 @@
|
||||||
(list 'get-file url-or-port path)
|
(list 'get-file url-or-port path)
|
||||||
(ein:content-url url-or-port path)
|
(ein:content-url url-or-port path)
|
||||||
:type "PATCH"
|
:type "PATCH"
|
||||||
:input (json-encode `(:path ,new-path))
|
:data (json-encode `(:path ,new-path))
|
||||||
:reader #'ein:json-read
|
:parser #'ein:json-read
|
||||||
:success (apply-partially #'update-content-path content)
|
:success (apply-partially #'update-content-path content)
|
||||||
:error (apply-partially #'ein-content-rename-error path))))
|
:error (apply-partially #'ein-content-rename-error path))))
|
||||||
|
|
||||||
|
|
|
@ -32,3 +32,8 @@
|
||||||
(require 'ein-contents-api)
|
(require 'ein-contents-api)
|
||||||
(require 'deferred)
|
(require 'deferred)
|
||||||
|
|
||||||
|
(defparameter *list-content-result* nil)
|
||||||
|
|
||||||
|
(defun ein-test-list-contents-1 ()
|
||||||
|
(ein:content-list-contents "" )
|
||||||
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue