@@ -48,8 +48,9 @@ impl From<PathError> for FileSystemError {
48
48
/// Return type for public [FileSystem] operations.
49
49
pub type FileSystemResult < T > = Result < T , FileSystemError > ;
50
50
51
- /// Entry point into the file system abstraction described by the module description. Accessor to
52
- /// an UEFI volume. Available methods try to be close to the `fs` module of `libstd`.
51
+ /// The file system abstraction provided by this module. It acts as convenient accessor to an UEFI
52
+ /// volume in top of the [`SimpleFileSystemProtocol`]. The available methods try to be close to the
53
+ /// `fs` module from the Rust standard library.
53
54
///
54
55
/// # Technical Background
55
56
/// Some random interesting information how this abstraction helps.
@@ -63,7 +64,7 @@ pub struct FileSystem<'name, 'boot_services> {
63
64
}
64
65
65
66
impl < ' name , ' boot_services > FileSystem < ' name , ' boot_services > {
66
- /// Constructor. The name is only used to help you as a user to identify this file system.
67
+ /// Constructor. The name is only used to help developers to identify this file system.
67
68
/// This may be "root", "main", or "boot".
68
69
pub fn new (
69
70
name : & ' name str ,
0 commit comments