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

Function format_author

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

Format an author for display.

(author: &Author)

Source from the content-addressed store, hash-verified

771
772/// Format an author for display.
773pub(crate) fn format_author(author: &Author) -> String {
774 if let Some(ref email) = author.email {
775 format!("{} <{}>", author.name, email)
776 } else {
777 author.name.clone()
778 }
779}
780
781/// Count unique paths affected by hunks.
782pub(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