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

Function format_author

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

Format an author for display.

(author: &Author)

Source from the content-addressed store, hash-verified

785
786/// Format an author for display.
787pub(crate) fn format_author(author: &Author) -> String {
788 if let Some(ref email) = author.email {
789 format!("{} <{}>", author.name, email)
790 } else {
791 author.name.clone()
792 }
793}
794
795/// Count unique paths affected by hunks.
796pub(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