diff options
author | Corey Farwell <coreyf@rwell.org> | 2016-12-09 08:37:22 -1000 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2016-12-09 08:38:15 -1000 |
commit | 586d46decdb15acc9e7c12152bc99e7375e66134 (patch) | |
tree | b6a2b608fd8d35aafe5db5ac359852d361ba7ff7 | |
parent | d2f59bf4357be0c930dd0f09ffbbc37e8e680823 (diff) | |
download | servo-586d46decdb15acc9e7c12152bc99e7375e66134.tar.gz servo-586d46decdb15acc9e7c12152bc99e7375e66134.zip |
Make unnecessarily public function private.
-rw-r--r-- | components/util/opts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/opts.rs b/components/util/opts.rs index b74b416395d..4f1db5d8c50 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -396,7 +396,7 @@ impl DebugOptions { } -pub fn print_debug_usage(app: &str) -> ! { +fn print_debug_usage(app: &str) -> ! { fn print_option(name: &str, description: &str) { println!("\t{:<35} {}", name, description); } |