docs: dlimport -> dynlib (#15175)

This commit is contained in:
Silvio
2020-08-11 14:49:57 +02:00
committed by GitHub
parent 2260ede247
commit 963db9e7da

View File

@@ -97,7 +97,7 @@ proc libCandidates*(s: string, dest: var seq[string]) =
add(dest, s)
proc loadLibPattern*(pattern: string, globalSymbols = false): LibHandle =
## loads a library with name matching `pattern`, similar to what `dlimport`
## loads a library with name matching `pattern`, similar to what `dynlib`
## pragma does. Returns nil if the library could not be loaded.
## Warning: this proc uses the GC and so cannot be used to load the GC.
var candidates = newSeq[string]()