mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
tokio-fs: Bump version to 0.1.2 (#469)
* Add a couple of missing full stops in the documentation
This commit is contained in:
committed by
Carl Lerche
parent
78b6bd4ca5
commit
39c95d6206
@@ -6,7 +6,7 @@ use std::fs::{self, Metadata};
|
||||
use std::io;
|
||||
use std::path::Path;
|
||||
|
||||
/// Queries the file system metadata for a path
|
||||
/// Queries the file system metadata for a path.
|
||||
pub fn metadata<P>(path: P) -> MetadataFuture<P>
|
||||
where
|
||||
P: AsRef<Path> + Send + 'static,
|
||||
@@ -14,7 +14,7 @@ where
|
||||
MetadataFuture::new(path)
|
||||
}
|
||||
|
||||
/// Future returned by `metadata`
|
||||
/// Future returned by `metadata`.
|
||||
#[derive(Debug)]
|
||||
pub struct MetadataFuture<P>
|
||||
where
|
||||
|
||||
Reference in New Issue
Block a user