From 1832bc8e046593cc60d021433fbf3ef1d68d4b0b Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Sun, 12 Jan 2025 03:24:31 -0700 Subject: [PATCH] dl.loader: fix minor typo in README.md (#23443) --- vlib/dl/loader/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/dl/loader/README.md b/vlib/dl/loader/README.md index 38d58033b3..8a1a54704d 100644 --- a/vlib/dl/loader/README.md +++ b/vlib/dl/loader/README.md @@ -2,7 +2,7 @@ `dl.loader` is an abstraction layer over `dl` that provides a more user-friendly API in the V way. It can be used to Dynamically Load a library during runtime in scenarios where the library to load -does not have a determined path an can be located in different places. +does not have a determined path and can be located in different places. It also provides a way to load a library from a specific path, or from a list of paths, or from a custom environment variable that contains a list of paths.