1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-21 08:19:32 +02:00

Minor rewording of safe-ffi-wrapper exercise. (#1286)

For readability.
This commit is contained in:
Nick Radcliffe
2023-10-03 15:03:30 +01:00
committed by GitHub
parent 9f079f173b
commit 0f768df367

View File

@ -2,7 +2,7 @@
Rust has great support for calling functions through a _foreign function
interface_ (FFI). We will use this to build a safe wrapper for the `libc`
functions you would use from C to read the filenames of a directory.
functions you would use from C to read the names of files in a directory.
You will want to consult the manual pages: