diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-12-21 23:51:15 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-12-21 23:51:15 +0100 |
| commit | 4c92ab4ace41a20ccea59bbdf6917b5dfa29121f (patch) | |
| tree | 5d444b04657dfa0521884953520ed40af37efd4e /library/src/compute/mod.rs | |
| parent | 1eda162867afab656ec9b95c85f725cd676d4f04 (diff) | |
Rename the `create` category to `construct`
Diffstat (limited to 'library/src/compute/mod.rs')
| -rw-r--r-- | library/src/compute/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/compute/mod.rs b/library/src/compute/mod.rs index 70690d44..5cfbe158 100644 --- a/library/src/compute/mod.rs +++ b/library/src/compute/mod.rs @@ -1,13 +1,13 @@ //! Computational functions. mod calc; -mod create; +mod construct; mod data; mod foundations; mod utility; pub use self::calc::*; -pub use self::create::*; +pub use self::construct::*; pub use self::data::*; pub use self::foundations::*; pub use self::utility::*; |
