Skip to content

Commit

Permalink
rename author module
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Nov 25, 2023
1 parent 7dd9711 commit bee580c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/info/git/metrics.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::sig::Sig;
use crate::cli::{CliOptions, NumberSeparator};
use crate::info::author::Author;
use crate::info::authors::Author;
use crate::info::churn::FileChurn;
use anyhow::Result;
use gix::bstr::BString;
Expand Down
4 changes: 2 additions & 2 deletions src/info/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use self::author::AuthorsInfo;
use self::authors::AuthorsInfo;
use self::churn::ChurnInfo;
use self::commits::CommitsInfo;
use self::contributors::ContributorsInfo;
Expand Down Expand Up @@ -32,7 +32,7 @@ use owo_colors::{DynColors, OwoColorize};
use serde::Serialize;
use std::path::Path;

mod author;
mod authors;
mod churn;
mod commits;
mod contributors;
Expand Down

0 comments on commit bee580c

Please sign in to comment.