Skip to content

Commit

Permalink
replace mention of non existant method get_directory_entry
Browse files Browse the repository at this point in the history
  • Loading branch information
x37v authored and eldruin committed Mar 7, 2022
1 parent 2824bdf commit d108180
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,9 @@ where
}
}

/// Open a directory. You can then read the directory entries in a random
/// order using `get_directory_entry`.
/// Open a directory.
///
/// You can then read the directory entries with `iterate_dir` and `open_file_in_dir`.
///
/// TODO: Work out how to prevent damage occuring to the file system while
/// this directory handle is open. In particular, stop this directory
Expand Down Expand Up @@ -377,8 +378,9 @@ where
})
}

/// Open a directory. You can then read the directory entries in a random
/// order using `get_directory_entry`.
/// Open a directory.
///
/// You can then read the directory entries with `iterate_dir` and `open_file_in_dir`.
///
/// TODO: Work out how to prevent damage occuring to the file system while
/// this directory handle is open. In particular, stop this directory
Expand Down

0 comments on commit d108180

Please sign in to comment.