From 40198a1504cf4781e3da01f5af12f2fd284e1a50 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 24 Nov 2022 23:22:39 +0900 Subject: [PATCH] refactor(core): fix typo in ops_builtin.rs (#16613) --- core/ops_builtin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs index 3fc9d62d6e..6374e9951e 100644 --- a/core/ops_builtin.rs +++ b/core/ops_builtin.rs @@ -205,7 +205,7 @@ async fn op_read_all( match maybe_max { Some(max) if vec.len() >= max as usize => { // no need to resize the vec, because the vec is already large enough - // to accomodate the maximum size of the read data. + // to accommodate the maximum size of the read data. } Some(max) if (max as usize) < vec.len() + grow_len => { // grow the vec to the maximum size of the read data