From 6a19201eb4b5488613c567ab893d48cc20f753a6 Mon Sep 17 00:00:00 2001 From: jfh Date: Thu, 7 Oct 2021 17:37:24 +0300 Subject: [PATCH] Fix warnings for doc build. --- src/compile.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compile.rs b/src/compile.rs index 09897d8..91781a2 100644 --- a/src/compile.rs +++ b/src/compile.rs @@ -2,8 +2,8 @@ //! Take an AST and transform it into bytecode //! //! Inspirational code: -//! https://github.com/python/cpython/blob/main/Python/compile.c -//! https://github.com/micropython/micropython/blob/master/py/compile.c +//! +//! use crate::ir::{self, CodeInfo}; pub use crate::mode::Mode;