From 73882337cc1076b6cb70d8d8180f1891a9c639b4 Mon Sep 17 00:00:00 2001 From: Walt Seymour Date: Wed, 13 Apr 2022 16:28:10 -0400 Subject: [PATCH] unrwap -> unwrap --- crates/napi/src/env.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/napi/src/env.rs b/crates/napi/src/env.rs index 90df5612..0a54e929 100644 --- a/crates/napi/src/env.rs +++ b/crates/napi/src/env.rs @@ -774,7 +774,7 @@ impl Env { } else { Err(Error::new( 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 { Err(Error::new( 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 { Err(Error::new( 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 { Err(Error::new( 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(), )) } }