Fixed typo in generic documentation.

This commit is contained in:
Sajjad Heydari 2022-06-24 22:37:06 -05:00 committed by GitHub
parent 98a8c200fb
commit e202696461
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,7 +90,7 @@ during attachment. (Private)"))
(defgeneric js-execute (clog-obj script)
(:documentation "Execure SCRIPT on browser. Result is
dicarded, return CLOG-OBJ. (Internal)"))
discarded, return CLOG-OBJ. (Internal)"))
(defmethod js-execute ((obj clog-obj) script)
(if *connection-cache*
@ -139,7 +139,7 @@ flushed with FLUSH-CONNECTION-CACHE or a query is made."
(defgeneric execute (clog-obj method)
(:documentation "Execute the JavaScript METHOD on OBJ. Result is
dicarded. see JQUERY-EXECUTE (Internal)"))
discarded. see JQUERY-EXECUTE (Internal)"))
(defmethod execute ((obj clog-obj) method)
(js-execute obj (format nil "~A.~A" (script-id obj) method)))