From ede685bcc083ce293455196a2eddbda74b393698 Mon Sep 17 00:00:00 2001 From: v-jkegler Date: Tue, 5 Nov 2024 11:10:54 -0500 Subject: [PATCH] Add per-file comment to lib.rs (#42) Co-authored-by: Jeffrey Kegler --- parser/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/parser/src/lib.rs b/parser/src/lib.rs index 06cddf15..c33c4ad2 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -1,3 +1,7 @@ +/// This is the primary interface for llguidance -- the one on which the others +/// (FFI and LLInterpreter) are built. While not cleanest of these interfaces, +/// it is the most inclusive. +/// /// cbindgen:ignore pub mod earley;