MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / format_author

Function format_author

atomic-cli/src/commands/change/command.rs:808–814  ·  view source on GitHub ↗

Format an author for display.

(author: &Author)

Source from the content-addressed store, hash-verified

806
807/// Format an author for display.
808pub(crate) fn format_author(author: &Author) -> String {
809 if let Some(ref email) = author.email {
810 format!("{} <{}>", author.name, email)
811 } else {
812 author.name.clone()
813 }
814}
815
816/// Count unique paths affected by hunks.
817pub(crate) fn count_unique_paths<H>(hunks: &[GraphOp<H>]) -> usize {

Callers 1

format_defaultMethod · 0.70

Calls 1

cloneMethod · 0.45

Tested by

no test coverage detected