branch: elpa/swift-mode commit e0fba7121d9051100162c0240a4b13512953a780 Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
repl -> REPL --- swift-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift-mode.el b/swift-mode.el index 0211400..de84a83 100644 --- a/swift-mode.el +++ b/swift-mode.el @@ -330,7 +330,7 @@ Returns the column number as an integer." ;;; REPL (defvar swift-repl-buffer nil - "Stores the name of the current swift repl buffer, or nil.") + "Stores the name of the current swift REPL buffer, or nil.") ;;;###autoload (defun swift-mode-run-repl (cmd &optional dont-switch-p) @@ -344,7 +344,7 @@ is run). \(Type \\[describe-mode] in the process buffer for a list of commands.)" (interactive (list (if current-prefix-arg - (read-string "Run swift-repl: " swift-repl-executable) + (read-string "Run swift REPL: " swift-repl-executable) swift-repl-executable))) (unless (comint-check-proc "*swift-repl*") (save-excursion (let ((cmdlist (split-string cmd)))