about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEthan Brierley <ethanboxx@gmail.com>2020-10-26 05:51:22 -0500
committerGitHub <noreply@github.com>2020-10-26 05:51:22 -0500
commit75e6deefee8dc68fc35bdfe5effbfdb517b03f9c (patch)
tree792891e437ef66984ab16a7ebb04bec6b1f7afb4
parent69c301f0f36696f93a90bb7a6afe9081b0d04233 (diff)
downloadrust-75e6deefee8dc68fc35bdfe5effbfdb517b03f9c.tar.gz
rust-75e6deefee8dc68fc35bdfe5effbfdb517b03f9c.zip
asci -> ASCII
Co-authored-by: Ashley Mannix <kodraus@hey.com>
-rw-r--r--library/core/src/num/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/error.rs b/library/core/src/num/error.rs
index d1a65aa35ae..e1684719ab4 100644
--- a/library/core/src/num/error.rs
+++ b/library/core/src/num/error.rs
@@ -95,7 +95,7 @@ pub enum IntErrorKind {
     /// Contains an invalid digit in its context.
     ///
     /// Among other causes, this variant will be constructed when parsing a string that
-    /// contains a non-asci char.
+    /// contains a non-ASCII char.
     ///
     /// This variant is also constructed when a `+` or `-` is misplaced within a string
     /// either on its own or in the middle of a number.