Fix typo and prettify comment

This commit is contained in:
Satoshi Tanda
2024-12-28 17:18:02 -08:00
committed by Amanieu d'Antras
parent a19239f298
commit 17422c6089

View File

@@ -26,14 +26,12 @@ pub struct CpuidResult {
}
/// Returns the result of the `cpuid` instruction for a given `leaf` (`EAX`)
/// and
/// `sub_leaf` (`ECX`).
/// and `sub_leaf` (`ECX`).
///
/// The highest-supported leaf value is returned by the first tuple argument of
/// [`__get_cpuid_max(0)`](fn.__get_cpuid_max.html). For leaves containung
/// [`__get_cpuid_max(0)`](fn.__get_cpuid_max.html). For leaves containing
/// sub-leaves, the second tuple argument returns the highest-supported
/// sub-leaf
/// value.
/// sub-leaf value.
///
/// The [CPUID Wikipedia page][wiki_cpuid] contains how to query which
/// information using the `EAX` and `ECX` registers, and the interpretation of