diff --git a/boa_ast/src/lib.rs b/boa_ast/src/lib.rs index daacc9d7106..56773314af5 100644 --- a/boa_ast/src/lib.rs +++ b/boa_ast/src/lib.rs @@ -1,9 +1,9 @@ //! Boa's **boa_ast** crate implements an ECMAScript abstract syntax tree. -//! +//! //! # Crate Overview -//! **boa_ast** contains representations of [**Parse Nodes**][grammar] as defined by the ECMAScript +//! **boa_ast** contains representations of [**Parse Nodes**][grammar] as defined by the ECMAScript //! spec. Some `Parse Node`s are not represented by Boa's AST, because a lot of grammar productions -//! are only used to throw [**Early Errors**][early], and don't influence the evaluation of the AST +//! are only used to throw [**Early Errors**][early], and don't influence the evaluation of the AST //! itself. //! //! Boa's AST is mainly split in three main components: [`Declaration`]s, [`Expression`]s and diff --git a/boa_gc/src/lib.rs b/boa_gc/src/lib.rs index 8766c95295d..814b89fd888 100644 --- a/boa_gc/src/lib.rs +++ b/boa_gc/src/lib.rs @@ -1,7 +1,7 @@ -//! Boa's **boa_gc** crate implements a garbage collector. -//! +//! Boa's **boa_gc** crate implements a garbage collector. +//! //! # Crate Overview -//! **boa_gc** is a mark-sweep garbage collector that implements a Trace and Finalize trait +//! **boa_gc** is a mark-sweep garbage collector that implements a Trace and Finalize trait //! for garbage collected values. //! //! # About Boa @@ -18,7 +18,7 @@ //! - **boa_parser** - Boa's lexer and parser //! - **boa_profiler** - Boa's code profiler //! - **boa_unicode** - Boa's Unicode identifier -//! +//! //! [boa-conformance]: https://boa-dev.github.io/boa/test262/ //! [boa-web]: https://boa-dev.github.io/ //! [boa-playground]: https://boa-dev.github.io/boa/playground/ diff --git a/boa_interner/src/lib.rs b/boa_interner/src/lib.rs index e07333680e3..dbbad51bc2f 100644 --- a/boa_interner/src/lib.rs +++ b/boa_interner/src/lib.rs @@ -23,7 +23,7 @@ //! - **boa_parser** - Boa's lexer and parser //! - **boa_profiler** - Boa's code profiler //! - **boa_unicode** - Boa's Unicode identifier -//! +//! //! [boa-conformance]: https://boa-dev.github.io/boa/test262/ //! [boa-web]: https://boa-dev.github.io/ //! [boa-playground]: https://boa-dev.github.io/boa/playground/ diff --git a/boa_profiler/src/lib.rs b/boa_profiler/src/lib.rs index 62cb125cc07..2befca34874 100644 --- a/boa_profiler/src/lib.rs +++ b/boa_profiler/src/lib.rs @@ -1,5 +1,5 @@ //! The **boa_profiler** crate is a code profiler for Boa. -//! +//! //! # Crate Overview //! This crate provides a code profiler for Boa. For more information, please //! see Boa's page on [profiling][profiler-md] @@ -18,7 +18,7 @@ //! - **boa_parser** - Boa's lexer and parser //! - **boa_profiler** - Boa's code profiler //! - **boa_unicode** - Boa's Unicode identifier -//! +//! //! [profiler-md]: https://github.com/boa-dev/boa/blob/main/docs/profiling.md //! [boa-conformance]: https://boa-dev.github.io/boa/test262/ //! [boa-web]: https://boa-dev.github.io/ diff --git a/boa_unicode/src/lib.rs b/boa_unicode/src/lib.rs index 0207bd627f6..7e00b09154d 100644 --- a/boa_unicode/src/lib.rs +++ b/boa_unicode/src/lib.rs @@ -1,9 +1,9 @@ //! Boa's **boa_unicode** crate for query valid Unicode identifiers. -//! +//! //! # Crate Overview //! This crate implements the extension to query if a char belongs to a particular unicode identifier property. -//! -//! Current Version: +//! +//! Current Version: //! - Unicode 15.0.0 //! //! More information: @@ -23,7 +23,7 @@ //! - **boa_parser** - Boa's lexer and parser //! - **boa_profiler** - Boa's code profiler //! - **boa_unicode** - Boa's Unicode identifier -//! +//! //! [uax31]: http://unicode.org/reports/tr31 //! [boa-conformance]: https://boa-dev.github.io/boa/test262/ //! [boa-web]: https://boa-dev.github.io/