You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style(Maintain): remove spaces after colons in struct definitions and parameters
Standardize Rust code formatting across the Maintain build/orchestration system by removing spaces between colons and type annotations in struct field definitions and function parameters. This affects all modules in the Build and Run submodules, including CLI, Definition, Process, and supporting modules.
Changes include:
- `pub FieldName: Type` → `pub FieldName:Type`
- `fn Name(&self, Param: Type)` → `fn Name(&self, Param:Type)`
- Import statement reordering (std imports moved to top)
No functional changes - purely cosmetic formatting to match project style conventions.
0 commit comments