This commit is contained in:
Vivek 2025-01-29 19:48:13 -06:00
parent 5fffbdef2a
commit 3256352742

View File

@ -165,7 +165,7 @@ fn relative_to(path: &Path, span: Span, args: &Arguments) -> Value {
let mut path = PathBuf::new();
differing_parent.iter().for_each(|_| path.push(".."));
path.push(&differing_child);
path.push(differing_child);
Value::string(path.to_string_lossy(), span)
}