Fix typos

This commit is contained in:
Gerard Vermeulen 2024-06-13 08:12:02 +02:00
parent 396459b0fe
commit 7d6616a837

View File

@ -5379,7 +5379,7 @@ This invokes an asynchronous process and finishes with a message."
:buffer (generate-new-buffer-name "*pip-list-outdated-output*")
:command content
:sentinel #'pip--list-outdated-sentinel)
(message "Running `%s' asynchronously" (string-join command " "))))
(message "Running `%s' asynchronously" (string-join content " "))))
#+end_src
#+caption[Emacs interface to upgrade outdated unfrozen Python packages]:
@ -5412,7 +5412,7 @@ buffer to check whether upgrading has made the dependencies incompatible."
:buffer (generate-new-buffer-name "*pip-upgrade-maybe*")
:command content
:sentinel #'pip--upgrade-maybe-sentinel)
(message "Running `%s' asynchronously" (string-join command " ")))
(message "Running `%s' asynchronously" (string-join content " ")))
(message "`pip-upgrade-maybe' found no packages to install"))))
#+end_src