diff options
author | Teddy Wing | 2020-08-02 04:57:39 +0200 |
---|---|---|
committer | Teddy Wing | 2020-08-02 04:57:39 +0200 |
commit | 4adbb18b9e0116afe552d3578c95379ac51e0197 (patch) | |
tree | 9fa87db517f717a79c94fbbe4f31fc9de4d504a2 | |
parent | a511ff6308a20ac17908a35f42d63c024151da98 (diff) | |
download | git-suggestion-4adbb18b9e0116afe552d3578c95379ac51e0197.tar.bz2 |
lib.rs: Make `owner_repo` `pub(crate)` again
Made this `pub` for one of the test tries in
38a871f28bad90e238021d8cc46b9fa926f9df75, but in the end it wasn't
necessary. Restore this to the prior visibility.
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,8 @@ pub mod config; pub mod error; -pub mod owner_repo; + +pub(crate) mod owner_repo; mod arg; |