From efd35e8e9fff7e69ece769c152fcc31462fa82e3 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 20 Jan 2021 11:22:43 +0100 Subject: [PATCH] ambrevar/file: Document `path' method. --- .local/share/common-lisp/source/ambrevar/file.lisp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.local/share/common-lisp/source/ambrevar/file.lisp b/.local/share/common-lisp/source/ambrevar/file.lisp index bff09b61..c24936b8 100644 --- a/.local/share/common-lisp/source/ambrevar/file.lisp +++ b/.local/share/common-lisp/source/ambrevar/file.lisp @@ -48,9 +48,11 @@ (:export-class-name-p t)) (defmethod path ((s string)) + "Useful so that `path' can be called both on a `file' or a `string'." s) (defmethod path ((p pathname)) + "Useful so that `path' can be called both on a `file' or a `pathname'." (namestring p)) (export-always 'extension)