NickelEval.jl

Julia FFI bindings for Nickel configuration language
Log | Files | Refs | README | LICENSE

commit 193afabbd94976e0b07187607f8e3a33fc0b626c
parent 3e799d8962805cbe9c71ebc055453dec958d6cfb
Author: Erik Loualiche <eloualic@umn.edu>
Date:   Fri,  6 Feb 2026 09:40:29 -0600

Fix documentation: export find_nickel_executable

Diffstat:
Mdocs/src/lib/public.md | 7+------
Msrc/NickelEval.jl | 1+
2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/docs/src/lib/public.md b/docs/src/lib/public.md @@ -6,6 +6,7 @@ nickel_eval nickel_eval_file nickel_read +find_nickel_executable ``` ## Export Functions @@ -29,9 +30,3 @@ nickel_eval_ffi ```@docs @ncl_str ``` - -## Types - -```@docs -NickelError -``` diff --git a/src/NickelEval.jl b/src/NickelEval.jl @@ -5,6 +5,7 @@ using JSON export nickel_eval, nickel_eval_file, nickel_export, nickel_read, @ncl_str, NickelError export nickel_to_json, nickel_to_toml, nickel_to_yaml export check_ffi_available, nickel_eval_ffi +export find_nickel_executable # Custom exception for Nickel errors struct NickelError <: Exception