From 124b2243009f6baf444818ae42797642ba846d04 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 12c5328..872fe60 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;