about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2018-10-06 11:21:53 -0400
committerGitHub <noreply@github.com>2018-10-06 11:21:53 -0400
commit4f3896d8ef381993f333cc7c984991a4590df29f (patch)
tree2ce287993f3c9fc20a9135ecc3c971f9166c2303 /src/libstd
parentb3750aa34e50c0275036a15f28710f934e33bba3 (diff)
downloadrust-4f3896d8ef381993f333cc7c984991a4590df29f.tar.gz
rust-4f3896d8ef381993f333cc7c984991a4590df29f.zip
'a' → 'an' in front of vowel sounds.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs
index 6515a5540ee..386de080b85 100644
--- a/src/libstd/io/error.rs
+++ b/src/libstd/io/error.rs
@@ -212,7 +212,7 @@ impl ErrorKind {
 /// the heap (for normal construction via Error::new) is too costly.
 #[stable(feature = "io_error_from_errorkind", since = "1.14.0")]
 impl From<ErrorKind> for Error {
-    /// Converts a [`ErrorKind`] into a [`Error`].
+    /// Converts an [`ErrorKind`] into an [`Error`].
     ///
     /// This conversion allocates a new error with a simple representation of error kind.
     ///