From ea802fbdf937b5657818d21db1579547312a5cf3 Mon Sep 17 00:00:00 2001 From: Alex Bethel Date: Mon, 9 May 2022 17:56:28 -0600 Subject: [PATCH] Fix AbleScript lib doc comment --- ablescript/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ablescript/src/lib.rs b/ablescript/src/lib.rs index 12c53286..872fe600 100644 --- a/ablescript/src/lib.rs +++ b/ablescript/src/lib.rs @@ -1,4 +1,7 @@ -#![doc = include_str!("../../README.md")] +//! The AbleScript language reference implementation. See +//! for more +//! information. + #![forbid(unsafe_code, clippy::unwrap_used)] pub mod ast;