aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTeddy Wing2020-08-02 04:57:39 +0200
committerTeddy Wing2020-08-02 04:57:39 +0200
commit4adbb18b9e0116afe552d3578c95379ac51e0197 (patch)
tree9fa87db517f717a79c94fbbe4f31fc9de4d504a2 /src/lib.rs
parenta511ff6308a20ac17908a35f42d63c024151da98 (diff)
downloadgit-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.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index af0e7bb..0a8ab13 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,7 +2,8 @@
pub mod config;
pub mod error;
-pub mod owner_repo;
+
+pub(crate) mod owner_repo;
mod arg;