relative paths in #include are relative to the file's parent directory, if possible

This commit is contained in:
Mark
2023-12-05 09:55:00 +01:00
parent 0aca8e5b25
commit 8b60da8d99
2 changed files with 13 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ use super::Config;
impl Config {
/// Adds functions to deal with iterables
/// `iter: fn` executes a function once for each element of the iterable
/// `for_each: fn` executes a function once for each element of the iterable
/// `map: fn` maps each value in the iterable to a new one by applying a transformation function
/// `filter: fn` filters the iterable by removing all elements where the filter function doesn't return true
/// `filter_map: fn` combines filter and map. requires that the function returns ()/(t).