diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-01-26 15:54:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 06:54:01 +0000 |
commit | 67a3b5f72acfa0420065418986e03a35e8db6a31 (patch) | |
tree | 9b3786679886997b5d78d3c8689dac248cab6744 /core/runtime.rs | |
parent | a6f915c22f34921780b4bcb8b6da8cd3bd20d5a8 (diff) |
chore(core): fix typo in runtime.rs (#17537)
determinstic -> deterministic
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 5f89fbdee..0788cc08c 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -266,7 +266,7 @@ pub struct RuntimeOptions { pub startup_snapshot: Option<Snapshot>, /// Prepare runtime to take snapshot of loaded code. - /// The snapshot is determinstic and uses predictable random numbers. + /// The snapshot is deterministic and uses predictable random numbers. pub will_snapshot: bool, /// Isolate creation parameters. |