From 36438ca349adce95acc730a30f776bb956a13dc8 Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Sun, 12 Jan 2025 00:49:19 -0700 Subject: [PATCH] fix minor typo in README.md --- 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 38d58033b3c9e8..8a1a54704dc5cd 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.