File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ mod platform {
258
258
/// Path prefixes (Windows only).
259
259
///
260
260
/// Windows uses a variety of path styles, including references to drive
261
- /// volumes (like `C:`), network shared (like `\\server\share`) and
261
+ /// volumes (like `C:`), network shared folders (like `\\server\share`) and
262
262
/// others. In addition, some path prefixes are "verbatim", in which case
263
263
/// `/` is *not* treated as a separator and essentially no normalization is
264
264
/// performed.
@@ -312,14 +312,14 @@ impl<'a> Prefix<'a> {
312
312
313
313
}
314
314
315
- /// Determines if the prefix is verbatim, i.e. begins `\\?\`.
315
+ /// Determines if the prefix is verbatim, i.e. begins with `\\?\`.
316
316
#[ inline]
317
317
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
318
318
pub fn is_verbatim ( & self ) -> bool {
319
319
use self :: Prefix :: * ;
320
320
match * self {
321
321
Verbatim ( _) | VerbatimDisk ( _) | VerbatimUNC ( _, _) => true ,
322
- _ => false
322
+ _ => false ,
323
323
}
324
324
}
325
325
You can’t perform that action at this time.
0 commit comments