From 80a57a8c4ac1b94eb53aac53d3f14db7a7db7ed1 Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@sift.net>
Date: Mon, 27 Apr 2015 09:39:54 -0500
Subject: [PATCH] Comment tweak.

---
 uiop/configuration.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/uiop/configuration.lisp b/uiop/configuration.lisp
index 67488448..c8ebfe88 100644
--- a/uiop/configuration.lisp
+++ b/uiop/configuration.lisp
@@ -352,10 +352,10 @@ returns pathnames for directories that contain all of the configuration informat
      `(,(config-home-pathname app more)
        ,@(config-search-pathnames app more))))
 
-  ;; FIXME: AFAICT although this says "find FILE," it is often used to find a DIRECTORY.
   (defun find-preferred-file (files &key (direction :input))
     "Find first file in the list of FILES that exists (for direction :input or :probe)
-or just the first one (for direction :output or :io)."
+or just the first one (for direction :output or :io).
+    Note that when we say \"file\" here, the files in question may be directories."
     (find-if (ecase direction ((:probe :input) 'probe-file*) ((:output :io) 'identity)) files))
 
   (defun find-data-pathname (&optional app more (direction :input))
-- 
GitLab