diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-11-24 23:22:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-24 15:22:39 +0100 |
commit | 04afc06b00b28645462f3cca1626d22c1cd579f8 (patch) | |
tree | e559dff38dc49890ff51dbffa531c804b9974e9e /core/ops_builtin.rs | |
parent | fe7e3a12ca02792215f7598302c42113bcdc4458 (diff) |
refactor(core): fix typo in ops_builtin.rs (#16613)
Diffstat (limited to 'core/ops_builtin.rs')
-rw-r--r-- | core/ops_builtin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs index 3fc9d62d6..6374e9951 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 |