Skip to content

Commit

Permalink
Make comments in common.rs lowercase (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Sep 14, 2019
1 parent e8c2542 commit 1d32357
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/common.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// stdlib
pub(crate) use std::{
borrow::Cow,
cmp,
Expand All @@ -13,26 +14,27 @@ pub(crate) use std::{
usize, vec,
};

// dependencies
pub(crate) use edit_distance::edit_distance;
pub(crate) use libc::{EXIT_FAILURE, EXIT_SUCCESS};
pub(crate) use log::warn;
pub(crate) use unicode_width::UnicodeWidthChar;

// Modules
// modules
pub(crate) use crate::search;

// Modules used in tests
// modules used in tests
#[cfg(test)]
pub(crate) use crate::testing;

// Functions
// functions
pub(crate) use crate::{
load_dotenv::load_dotenv,
misc::{default, empty},
output::output,
};

// Structs and enums
// structs and enums
pub(crate) use crate::{
alias::Alias, alias_resolver::AliasResolver, assignment_evaluator::AssignmentEvaluator,
assignment_resolver::AssignmentResolver, color::Color, compilation_error::CompilationError,
Expand Down

0 comments on commit 1d32357

Please sign in to comment.