From ef0a2130bb00dd51f923f7527ca60c023d4b5967 Mon Sep 17 00:00:00 2001 From: Charles Schleich Date: Tue, 10 Sep 2024 17:16:46 +0200 Subject: [PATCH] fix typo backendS_search_dirs --- content/docs/manual/plugin-storage-manager.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/manual/plugin-storage-manager.md b/content/docs/manual/plugin-storage-manager.md index e97523c5..9d61523a 100644 --- a/content/docs/manual/plugin-storage-manager.md +++ b/content/docs/manual/plugin-storage-manager.md @@ -24,7 +24,7 @@ When defining volumes, there are multiple ways to inform it of which backend it - With the `__path__` option, you may specify a list of absolute paths. The storage manager will then load the first file to be found at one of these paths. Specifying this option disables name-based lookup completely. - Using neither of these options will result in the same name-based lookup as with the `backend` option, using the volume's name. -This name-based lookup consists in searching the configured `backends_search_dirs` for a `zbackend_` dynamic library file; the exact searched filenames are platform-specific: +This name-based lookup consists in searching the configured `backend_search_dirs` for a `zbackend_` dynamic library file; the exact searched filenames are platform-specific: - on Unix/Linux: `libzbackend_.so` - on macOS: `libzbackend_.dylib` - on Windows: `zbackend_.dll` @@ -38,7 +38,7 @@ The main schema is as follows: ```typescript { // Search directories when backends are requested by name - backends_search_dirs?: string | string[], + backend_search_dirs?: string | string[], // The list of volumes that must be created volumes: { // All volumes on a Zenoh node must have unique names