Swap order of returned tuple fields in resolve_paths

This commit is contained in:
kennethloeffler 2024-04-05 23:41:34 -07:00
parent d252be46b3
commit 9804a6abfe

View file

@ -70,7 +70,7 @@ impl RequireContext {
CWD.join(&rel_path)
};
Ok((rel_path, abs_path))
Ok((abs_path, rel_path))
}
/**