doc: update trim_doc_node_description, make module readmes more uniform (#20792)

This commit is contained in:
Turiiya 2024-02-12 17:38:47 +07:00 committed by GitHub
parent e3b64d3278
commit d485cceee8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
59 changed files with 186 additions and 150 deletions

View file

@ -1,4 +1,4 @@
## Description:
## Description
`dl` can be used to Dynamically Load a library during runtime.
It is a thin wrapper over `LoadLibrary` on Windows, and `dlopen` on Unix.

View file

@ -1,4 +1,4 @@
## Description:
## Description
`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
@ -7,7 +7,7 @@ does not have a determined path an 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.
## Usage:
## Usage
```v
import dl.loader