branch: elpa/dockerfile-mode commit e6d5598bf0eb1de264fc2787a0ed0f9968d84d8a Author: Guillermo Robles <guillerobles1...@gmail.com> Commit: Guillermo Robles <guillerobles1...@gmail.com>
Add adequate spacing to documentation --- dockerfile-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile-mode.el b/dockerfile-mode.el index 6975f7c68a..c011eef96a 100644 --- a/dockerfile-mode.el +++ b/dockerfile-mode.el @@ -109,7 +109,7 @@ Each element of the list will be passed as a separate (defun dockerfile-standard-filename (file) "Convert the FILE name to OS standard. If in Cygwin environment, uses Cygwin specific function to convert the -file name. Otherwise, uses Emacs' standard conversion function." +file name. Otherwise, uses Emacs' standard conversion function." (if (fboundp 'cygwin-convert-file-name-to-windows) (s-replace "\\" "\\\\" (cygwin-convert-file-name-to-windows file)) (convert-standard-filename file)))