Function get_comment_marker
Source pub fn get_comment_marker() -> &'static str
Expand description
Returns the comment marker for finding existing comments
§Returns
The marker string used to identify analyzer comments
§Examples
use rust_diff_analyzer::output::comment::get_comment_marker;
let marker = get_comment_marker();
assert!(marker.contains("rust-diff-analyzer"));