Skip to content

Commit ce711b5

Browse files
1 parent 0e7cbaf commit ce711b5

File tree

37 files changed

+215
-215
lines changed

37 files changed

+215
-215
lines changed

Source/command/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22

3-
/**
4-
* @module command
5-
* @description This module defines the abstract contract for the Command service.
6-
* It includes the `CommandExecutor` trait and the `ActionEffect` constructors for
7-
* all command operations.
8-
*/
3+
//
4+
// @module command
5+
// @description This module defines the abstract contract for the Command service.
6+
// It includes the `CommandExecutor` trait and the `ActionEffect` constructors for
7+
// all command operations.
8+
//
99

1010
#![allow(non_snake_case, non_camel_case_types)]
1111

Source/config/dto/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22

3-
/**
4-
* @module dto (Config)
5-
* @description Aggregates and re-exports all Data Transfer Objects (DTOs)
6-
* related to the Configuration service.
7-
*/
3+
//
4+
// @module dto (Config)
5+
// @description Aggregates and re-exports all Data Transfer Objects (DTOs)
6+
// related to the Configuration service.
7+
//
88

99
#![allow(non_snake_case, non_camel_case_types)]
1010

Source/config/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22

3-
/**
4-
* @module config
5-
* @description This module defines the abstract contract for the Configuration service.
6-
* It includes the `ConfigProvider` and `ConfigInspector` traits, all related DTOs,
7-
* and the `ActionEffect` constructors for all configuration operations.
8-
*/
3+
//
4+
// @module config
5+
// @description This module defines the abstract contract for the Configuration service.
6+
// It includes the `ConfigProvider` and `ConfigInspector` traits, all related DTOs,
7+
// and the `ActionEffect` constructors for all configuration operations.
8+
//
99

1010
#![allow(non_snake_case, non_camel_case_types)]
1111

Source/custom_editor/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22

3-
/**
4-
* @module custom_editor
5-
* @description This module defines the abstract contract for the Custom Editor
6-
* service, which allows extensions to provide custom, webview-based editors
7-
* for specific file types.
8-
*/
3+
//
4+
// @module custom_editor
5+
// @description This module defines the abstract contract for the Custom Editor
6+
// service, which allows extensions to provide custom, webview-based editors
7+
// for specific file types.
8+
//
99

1010
#![allow(non_snake_case, non_camel_case_types)]
1111

Source/diagnostics/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22

3-
/**
4-
* @module diagnostics
5-
* @description This module defines the abstract contract for the Diagnostics service,
6-
* which is responsible for managing problems like errors and warnings. It includes
7-
* the `DiagnosticsManager` trait and the `ActionEffect` constructors for all
8-
* diagnostic operations.
9-
*/
3+
//
4+
// @module diagnostics
5+
// @description This module defines the abstract contract for the Diagnostics service,
6+
// which is responsible for managing problems like errors and warnings. It includes
7+
// the `DiagnosticsManager` trait and the `ActionEffect` constructors for all
8+
// diagnostic operations.
9+
//
1010

1111
#![allow(non_snake_case, non_camel_case_types)]
1212

Source/document/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22

3-
/**
4-
* @module document
5-
* @description This module defines the abstract contract for the Document service,
6-
* which is responsible for managing the lifecycle and content of text documents.
7-
* It includes the `DocumentProvider` trait and the `ActionEffect` constructors
8-
* for all document operations.
9-
*/
3+
//
4+
// @module document
5+
// @description This module defines the abstract contract for the Document service,
6+
// which is responsible for managing the lifecycle and content of text documents.
7+
// It includes the `DocumentProvider` trait and the `ActionEffect` constructors
8+
// for all document operations.
9+
//
1010

1111
#![allow(non_snake_case, non_camel_case_types)]
1212

Source/effect/ActionEffect.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//! Defines the core `ActionEffect` struct, the fundamental unit of computation
2-
//! in the application's declarative, effects-based architecture.
1+
// Defines the core `ActionEffect` struct, the fundamental unit of computation
2+
// in the application's declarative, effects-based architecture.
33

44
use std::{future::Future, pin::Pin, sync::Arc};
55

Source/effect/AppRuntime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//! Defines the concrete `AppRuntime` for the Mountain application, which is the
2-
//! engine responsible for executing `ActionEffect`s.
1+
// Defines the concrete `AppRuntime` for the Mountain application, which is the
2+
// engine responsible for executing `ActionEffect`s.
33

44
use std::sync::Arc;
55

Source/effect/ExecuteEffect.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//! Defines the generic `ExecuteEffect` helper function, providing a more
2-
//! ergonomic way to run `ActionEffect`s.
1+
// Defines the generic `ExecuteEffect` helper function, providing a more
2+
// ergonomic way to run `ActionEffect`s.
33

44
use std::sync::Arc;
55

Source/effect/mod.rs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22

3-
/**
4-
* @module effect
5-
* @description This module defines the core components of the declarative,
6-
* effects-based architecture. It provides the `ActionEffect` data structure,
7-
* the `AppRuntime` trait for executing effects, and a convenience helper function.
8-
*/
3+
//
4+
// @module effect
5+
// @description This module defines the core components of the declarative,
6+
// effects-based architecture. It provides the `ActionEffect` data structure,
7+
// the `AppRuntime` trait for executing effects, and a convenience helper function.
8+
//
99

1010
#![allow(non_snake_case, non_camel_case_types)]
1111

@@ -16,20 +16,20 @@ mod ExecuteEffect;
1616

1717
// --- Public Re-exports ---
1818

19-
/**
20-
* The core struct representing an asynchronous operation as a value.
21-
* @see ActionEffect
22-
*/
19+
//
20+
// The core struct representing an asynchronous operation as a value.
21+
// @see ActionEffect
22+
//
2323
pub use self::ActionEffect::ActionEffect;
2424

25-
/**
26-
* The core trait for any "engine" capable of executing `ActionEffect`s.
27-
* @see AppRuntime
28-
*/
25+
//
26+
// The core trait for any "engine" capable of executing `ActionEffect`s.
27+
// @see AppRuntime
28+
//
2929
pub use self::AppRuntime::AppRuntime;
3030

31-
/**
32-
* A generic helper function for a more ergonomic way to run `ActionEffect`s.
33-
* @see ExecuteEffect
34-
*/
31+
//
32+
// A generic helper function for a more ergonomic way to run `ActionEffect`s.
33+
// @see ExecuteEffect
34+
//
3535
pub use self::ExecuteEffect::ExecuteEffect;

0 commit comments

Comments
 (0)