about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect
diff options
context:
space:
mode:
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 18:05:15 +0200
committerAmanieu d'Antras <amanieu@gmail.com>2021-08-22 18:55:49 +0100
commit870cf5751d68f42218cb71613413c53ad519bdcc (patch)
tree339f85aaf41dbb09475e2bd6c7a52ddbcdf60af8 /library/stdarch/crates/std_detect
parent5b5df599d3978d84fe8a5fe74380f3396efe2a72 (diff)
downloadrust-870cf5751d68f42218cb71613413c53ad519bdcc.tar.gz
rust-870cf5751d68f42218cb71613413c53ad519bdcc.zip
Fix typos “an”→“a”
Diffstat (limited to 'library/stdarch/crates/std_detect')
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/x86.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
index e21ee6c3cb2..f2df1fbcdf3 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
@@ -2,7 +2,7 @@
 //!
 //! The features are detected using the `detect_features` function below.
 //! This function uses the CPUID instruction to read the feature flags from the
-//! CPU and encodes them in an `usize` where each bit position represents
+//! CPU and encodes them in a `usize` where each bit position represents
 //! whether a feature is available (bit is set) or unavaiable (bit is cleared).
 //!
 //! The enum `Feature` is used to map bit positions to feature names, and the