Skip to content

Commit 0a9e844

Browse files
authored
Update README.md
1 parent 5cdae3f commit 0a9e844

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ What's in the package?
99
- `arguments` an _immutable_ wrapper around the old `argv` pointer, behaves like a `std::vector<T> const`.
1010
- `environment` an _associative container_-like class, it let's you get and set environment variables like getting and setting keys in a `std::map`, but with a couple of differences:
1111
- `environment::operator[]` returns `environment::variable`, a proxy for interacting a single environment variable. You may assign it to a string to get the value or keep an instance of it and do operations on it later.
12-
- The `join_paths` function allows joining a series of `std::filesystem::path` into a `std::string` *(not implemented)*
12+
- The `join_paths` function allows joining a series of `std::filesystem::path` into a `std::string`
1313

1414
Both are empty classes and can be freely constructed around.
1515

@@ -81,4 +81,4 @@ env.erase("myvar");
8181
assert(!env.contains("myvar"));
8282
8383
// ...
84-
```
84+
```

0 commit comments

Comments
 (0)