codespell

This commit is contained in:
Michael Davidsaver
2023-11-20 17:04:33 -08:00
parent eddc687021
commit 7e6463c200
23 changed files with 62 additions and 32 deletions
+2 -2
View File
@@ -83,7 +83,7 @@ void benchAllocNTScalar()
constexpr size_t niter = 1000u;
const Value protoype(nt::NTScalar{TypeCode::UInt64, true, true, true}.create());
const Value prototype(nt::NTScalar{TypeCode::UInt64, true, true, true}.create());
std::vector<Value> can(niter);
@@ -93,7 +93,7 @@ void benchAllocNTScalar()
StopWatch W;
(void)W.click();
can[n] = protoype.cloneEmpty();
can[n] = prototype.cloneEmpty();
S.sample(W.click());
}