Skip to content

Commit 24a5009

Browse files
authored
fix dir_paths kwarg -> arg (#291)
1 parent f782dc5 commit 24a5009

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Products.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,14 @@ build configuration.
7676
7777
---
7878
79-
LibraryProduct(libname, varname::Symbol; dir_paths=String[],
80-
dont_dlopen=false,
81-
dlopen_flags=Symbol[])
79+
LibraryProduct(libname, varname::Symbol, dir_paths=String[];
80+
dont_dlopen=false, dlopen_flags=Symbol[])
8281
8382
Declares a `LibraryProduct` that points to a library located within the prefix.
8483
`libname` specifies the basename of the library, `varname` is the name of the
8584
variable in the JLL package that can be used to call into the library. By
8685
default, the library is searched in the `libdir`, but you can add other
87-
directories within the prefix to the `dir_paths` keyword argument. You can
86+
directories within the prefix to the `dir_paths` argument. You can
8887
specify the flags to pass to `dlopen` as a vector of `Symbols` with the
8988
`dlopen_flags` keyword argument. If the library should not be dlopen'ed
9089
automatically by the JLL package, set `dont_dlopen=true`.

0 commit comments

Comments
 (0)