From 22a41ed1d99e56cbd28156b819f068c2bc47aaf1 Mon Sep 17 00:00:00 2001 From: shuoer86 <129674997+shuoer86@users.noreply.github.com> Date: Sun, 7 Jan 2024 00:08:02 +0800 Subject: [PATCH] fix typo --- src/teeos/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/teeos/mod.rs b/src/teeos/mod.rs index 066f81ca55e4c..25e06ffaa3b10 100644 --- a/src/teeos/mod.rs +++ b/src/teeos/mod.rs @@ -62,7 +62,7 @@ pub struct _CLongDouble(pub u128); // long double in C means A float point value, which has 128bit length. // but some bit maybe not used, so the really length of long double could be 80(x86) or 128(power pc/IEEE) -// this is different from f128(not stable and not inculded default) in Rust, so we use u128 for FFI(Rust to C). +// this is different from f128(not stable and not included default) in Rust, so we use u128 for FFI(Rust to C). // this is unstable and will couse to memfault/data abort. pub type c_longdouble = _CLongDouble;