commit aa39f902b228016dd04492eb074faeae5d346b38
parent 4abea7523a9cf080746ccce59a718c5b881bd1d8
Author: Paul Walker <paul@pwjw.com>
Date: Mon, 20 Jun 2022 11:23:59 -0400
Respond to review feedback
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/include/clap/entry.h b/include/clap/entry.h
@@ -29,9 +29,12 @@ extern "C" {
// of this writing).
//
// Each directory should be recursively searched for files and/or bundles as appropriate in your OS
-// ending with the extension `.clap`. On windows and linux, the '.clap' file is a renamed shared
-// library object, so traversing the path should stop at regular files or symlinks. On macOS
-// the '.clap' file is a bundle, so traversing the path should stop at directories.
+// ending with the extension `.clap`.
+//
+// On Windows and Linux, the '.clap' file is a renamed shared library object, so traversing the path
+// should stop at the first non-directory (regular file, symlink, etc...) whose name ends in '.clap'.
+// On macOS the '.clap' file is a bundle, so traversing the path should stop at directories whose
+// name ends in '.clap'.
//
// Every method must be thread-safe.
typedef struct clap_plugin_entry {