Skip to content

Commit fa0e636

Browse files
style(Mountain): simplify entry point comments in Library.rs
Clean up documentation comments for the main entry point function: - Simplify module-level comment from explanatory to concise "Entry Point" - Update doc comment to explicitly state "both mobile and desktop builds" These are minor documentation improvements for clarity without changing any functionality.
1 parent 6e475d1 commit fa0e636

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Library.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ pub mod Track;
103103

104104
pub mod Workspace;
105105

106-
// Entry Point - binary and lib share this
106+
// Entry Point
107107
pub mod Binary;
108108

109-
/// Main entry point for desktop/mobile builds
109+
/// Main entry point for both mobile and desktop builds.
110110
#[cfg_attr(mobile, tauri::mobile_entry_point)]
111111
pub fn main() { Binary::Main::Main(); }

0 commit comments

Comments
 (0)