From 73900482c354c6db237e0205acc2540b06ee3f0f Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:22:31 +0000 Subject: [PATCH] docs(transformer/class-properties): reformat doc comment (#7909) --- .../src/es2022/class_properties/mod.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/crates/oxc_transformer/src/es2022/class_properties/mod.rs b/crates/oxc_transformer/src/es2022/class_properties/mod.rs index c08fd6e7af722..01ea8ec8e768f 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/mod.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/mod.rs @@ -125,16 +125,16 @@ //! //! Implementation is split into several files: //! -//! * `mod.rs`: Setup and visitor. -//! * `class.rs`: Transform of class body. -//! * `constructor.rs`: Insertion of property initializers into class constructor. -//! * `private.rs`: Transform of private property usages (`this.#prop`). -//! * `private_props.rs`: Structures storing details of private properties. +//! * `mod.rs`: Setup and visitor. +//! * `class.rs`: Transform of class body. +//! * `constructor.rs`: Insertion of property initializers into class constructor. +//! * `private.rs`: Transform of private property usages (`this.#prop`). +//! * `private_props.rs`: Structures storing details of private properties. //! * `instance_prop_init.rs`: Transform of instance property initializers. -//! * `static_prop_init.rs`: Transform of static property initializers. -//! * `class_bindings.rs`: Structure containing bindings for class name and temp var. -//! * `super.rs`: Transform `super` expressions. -//! * `utils.rs`: Utility functions. +//! * `static_prop_init.rs`: Transform of static property initializers. +//! * `class_bindings.rs`: Structure containing bindings for class name and temp var. +//! * `super.rs`: Transform `super` expressions. +//! * `utils.rs`: Utility functions. //! //! ## References //!