summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorJohn Bampton <jbampton@users.noreply.github.com>2023-03-01 04:05:30 +1000
committerGitHub <noreply@github.com>2023-02-28 10:05:30 -0800
commitc43fbe4ebd2b519601f0b90ca98fa096799d3846 (patch)
tree08b54264b5fa5ef737c429b10969877239803eeb /variable.c
parent966adfb79982436e552a7a65b8124b0a579e40c3 (diff)
downloadruby-c43fbe4ebd2b519601f0b90ca98fa096799d3846.tar.gz
Fix spelling (#7405)
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 692d158a8c..26a00db7c4 100644
--- a/variable.c
+++ b/variable.c
@@ -2721,7 +2721,7 @@ rb_autoload_load(VALUE module, ID name)
rb_raise(rb_eRactorUnsafeError, "require by autoload on non-main Ractor is not supported (%s)", rb_id2name(name));
}
- // This state is stored on thes stack and is used during the autoload process.
+ // This state is stored on the stack and is used during the autoload process.
struct autoload_load_arguments arguments = {.module = module, .name = name, .mutex = Qnil};
// Figure out whether we can autoload the named constant: