Fix doc links.

This commit is contained in:
Stephen Chung 2022-02-09 22:40:13 +08:00
parent e5a673b3ae
commit 8c5de09446
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ impl Engine {
/// ## Return value /// ## Return value
/// ///
/// * `Ok(true)`: continue with normal variable definition. /// * `Ok(true)`: continue with normal variable definition.
/// * `Ok(false)`: deny the variable definition with an [runtime error][EvalAltResult::ErrorRuntime]. /// * `Ok(false)`: deny the variable definition with an [runtime error][crate::EvalAltResult::ErrorRuntime].
/// ///
/// ## Raising errors /// ## Raising errors
/// ///

View File

@ -12,7 +12,7 @@ use std::{
ops::{Deref, DerefMut}, ops::{Deref, DerefMut},
}; };
/// _(internals)_ A chain of [module][Module] names to namespace-qualify a variable or function call. /// _(internals)_ A chain of [module][crate::Module] names to namespace-qualify a variable or function call.
/// Exported under the `internals` feature only. /// Exported under the `internals` feature only.
/// ///
/// Not available under `no_module`. /// Not available under `no_module`.