1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

join_segments -> build_glob_string

- this is a more descriptive name
This commit is contained in:
cyqsimon
2023-11-02 20:21:07 +08:00
parent 827b3eca2f
commit 64840fbbae
2 changed files with 4 additions and 4 deletions

View File

@@ -42,11 +42,11 @@ impl BuiltinMatcher {
}
}
/// Join a list of matcher segments, replacing all environment variables.
/// Returns `None` if any replacement fails.
/// Join a list of matcher segments to create a glob string, replacing all
/// environment variables. Returns `None` if any replacement fails.
///
/// Used internally by `BuiltinMatcher::Dynamic`'s lazy evaluation closure.
fn join_segments(segs: &[MatcherSegment]) -> Option<String> {
fn build_glob_string(segs: &[MatcherSegment]) -> Option<String> {
let mut buf = String::new();
for seg in segs {
match seg {