forked from Wandalen/wTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Wandalen#1328 from Barsik-sus/wca-documentation
READY: (wca): Improved documentation for modules: clarified descriptions and attributes
- Loading branch information
Showing
6 changed files
with
16 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
crate::mod_interface! | ||
{ | ||
/// Parsed command | ||
/// This module defines a raw representation of parsed commands, providing a foundation for further processing and | ||
/// transformation into other formats. The raw representation captures the essential information about each command in | ||
/// a straightforward and easy-to-work-with format, allowing for efficient manipulation and subsequent conversion to | ||
/// other representations. | ||
layer command; | ||
|
||
/// Parser. | ||
/// This module is responsible for processing command-line arguments and parsing them into a raw representation of a | ||
/// program containing multiple parsed commands. The input list of arguments is transformed into a structured format, | ||
/// allowing the program to efficiently handle and manipulate the parsed commands. | ||
layer parser; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
crate::mod_interface! | ||
{ | ||
|
||
/// Format table | ||
/// It takes a table of data and format it into a human-readable string | ||
layer table; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters