diff --git a/For later baja.md b/For later baja.md index c0a7b7f..bcacd80 100644 --- a/For later baja.md +++ b/For later baja.md @@ -5,7 +5,7 @@ You can learn more [here](https://doc.rust-lang.org/book/ch14-02-publishing-to-c The goal of this is to passively train you how to produce comments and code worthy of being open source and industry level. -Due to the language's interesting module seperating when creating a large program. All members will be involved in the creation of all functions and how they should be seperated. +Due to the language's interesting module seperating when creating a large program. All members will be involved in the creation of all functions and how they should be seperated into their groups of related ideas. First off the file tree structure will look like this example ``` @@ -22,9 +22,10 @@ Where *`front_of_house.rs`* is like this ```rust //! Describes what front_of_house module provides //! All functionality in other files this serves as a connector -//! Main functionality or run should be a sub file named appropriatly +//! Main idea and a run should be in this file //! re exports go here as well pub mod a_different_mod; +// only split if a different losely related idea is needed (the sub idea more relates to itself than to the parent) pub mod other_module_linked_in_modrs; ``` @@ -63,6 +64,6 @@ pub fn example_funct(input_var: i32, b: i32) -> i32 { } ``` -One all of the main modules have been decided upon a senior member or lead will be assigned to that module will then be responsible and will break the module into sub modules with their team +One all of the main modules have been decided upon a senior member or lead will be assigned to that module will then be responsible and will break the module into sub components to assign out to implement. -The team will then come other for a final time to ensure that all modules and sub modules make sense and thier ideas make sense \ No newline at end of file +The team will then come other for a final time to ensure that all sub modules make sense and thier ideas make sense and are appropriately assigned out. \ No newline at end of file