Write docs

This commit is contained in:
Jeff 2024-02-15 04:18:30 -05:00
parent 933ab3900b
commit 85cb641af8

View File

@ -4,7 +4,7 @@
//! //!
//! - [interpret] is the simplest way to run Dust code inside of an application or library //! - [interpret] is the simplest way to run Dust code inside of an application or library
//! - [interpret_with_context] allows you to set variables on the execution context //! - [interpret_with_context] allows you to set variables on the execution context
//! - [Interpreter] is an advanced tool that can parse, verify, run and format Dust code //! - [Interpreter] is an advanced tool that can parse, validate, run and format Dust code
//! //!
//! # Examples //! # Examples
//! //!
@ -175,7 +175,7 @@ impl Interpreter {
/// Return formatted Dust code generated from the current abstract tree, or /// Return formatted Dust code generated from the current abstract tree, or
/// None if no source code has been run successfully. /// None if no source code has been run successfully.
/// ///
/// You should call [verify][Interpreter::verify] before calling this /// You should call [validate][Interpreter::validate] before calling this
/// function. You can only create formatted source from a valid abstract /// function. You can only create formatted source from a valid abstract
/// tree. /// tree.
pub fn format(&mut self, source: &str) -> Result<String, Error> { pub fn format(&mut self, source: &str) -> Result<String, Error> {