unrwap -> unwrap

This commit is contained in:
Walt Seymour 2022-04-13 16:28:10 -04:00 committed by LongYinan
parent c605911cdf
commit 73882337cc

View file

@ -774,7 +774,7 @@ impl Env {
} else { } else {
Err(Error::new( Err(Error::new(
Status::InvalidArg, Status::InvalidArg,
"Invalid argument, T on unrwap is not the type of wrapped object".to_owned(), "Invalid argument, T on unwrap is not the type of wrapped object".to_owned(),
)) ))
} }
} }
@ -801,7 +801,7 @@ impl Env {
} else { } else {
Err(Error::new( Err(Error::new(
Status::InvalidArg, Status::InvalidArg,
"Invalid argument, T on unrwap is not the type of wrapped object".to_owned(), "Invalid argument, T on unwrap is not the type of wrapped object".to_owned(),
)) ))
} }
} }
@ -822,7 +822,7 @@ impl Env {
} else { } else {
Err(Error::new( Err(Error::new(
Status::InvalidArg, Status::InvalidArg,
"Invalid argument, T on unrwap is not the type of wrapped object".to_owned(), "Invalid argument, T on unwrap is not the type of wrapped object".to_owned(),
)) ))
} }
} }
@ -1141,7 +1141,7 @@ impl Env {
} else { } else {
Err(Error::new( Err(Error::new(
Status::InvalidArg, Status::InvalidArg,
"Invalid argument, T on unrwap is not the type of wrapped object".to_owned(), "Invalid argument, T on unwrap is not the type of wrapped object".to_owned(),
)) ))
} }
} }