Remove path to `mpilman` home dir in tutorial.cpp

This commit is contained in:
Markus Pilman 2023-11-17 20:38:15 +01:00
parent fd4a300d4c
commit 45c459cfc9
1 changed files with 1 additions and 2 deletions

View File

@ -621,8 +621,7 @@ AsyncGenerator<Optional<StringRef>> readLines(Reference<IAsyncFile> file) {
Future<Void> testReadLines() {
auto path = "/etc/hosts"s;
auto file = co_await IAsyncFileSystem::filesystem()->open(
"/Users/mpilman/Projects/frostdb/flow/include/flow/flow.h", IAsyncFile::OPEN_READWRITE, 0640);
auto file = co_await IAsyncFileSystem::filesystem()->open(path, IAsyncFile::OPEN_READWRITE, 0640);
auto lines = readLines(file);
for (int i = 0; true; ++i) {
auto line = co_await lines();