Refine doc comments.

This commit is contained in:
Stephen Chung
2022-03-01 15:34:15 +08:00
parent 99ca6de822
commit 83755bf936
7 changed files with 81 additions and 108 deletions

View File

@@ -24,13 +24,9 @@ pub type GlobalConstants =
#[derive(Clone)]
pub struct GlobalRuntimeState<'a> {
/// Stack of module names.
///
/// Not available under `no_module`.
#[cfg(not(feature = "no_module"))]
keys: crate::StaticVec<Identifier>,
/// Stack of imported [modules][crate::Module].
///
/// Not available under `no_module`.
#[cfg(not(feature = "no_module"))]
modules: crate::StaticVec<crate::Shared<crate::Module>>,
/// Source of the current context.