Skip to content

Commit 04c2281

Browse files
committed
Fix typo
1 parent 6ab9956 commit 04c2281

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ EXPERT:
118118
BACKTRACES_OMIT_UNUSED: [backtraces-omit-unused, boolean, true, Omit backtraces that should be unused as they have pure rescue expressions]
119119

120120
# Big Hash Strategy
121-
BIG_HASH_STRATEGY_IS_BUCKETS: [buckets-big-hash, boolean, false, 'Whether to use chaining-style bukcets hash store for hash tables exceeding the small hash limit']
121+
BIG_HASH_STRATEGY_IS_BUCKETS: [buckets-big-hash, boolean, false, 'Whether to use chaining-style buckets hash store for hash tables exceeding the small hash limit']
122122

123123
# Print backtraces at key events
124124
BACKTRACE_ON_INTERRUPT: [backtraces-on-interrupt, boolean, false, Show the backtraces of all Threads on Ctrl+C]

src/shared/java/org/truffleruby/shared/options/OptionsCatalog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ public final class OptionsCatalog {
503503

504504
public static final OptionDescriptor BIG_HASH_STRATEGY_IS_BUCKETS = OptionDescriptor
505505
.newBuilder(BIG_HASH_STRATEGY_IS_BUCKETS_KEY, "ruby.buckets-big-hash")
506-
.help("Whether to use chaining-style bukcets hash store for hash tables exceeding the small hash limit")
506+
.help("Whether to use chaining-style buckets hash store for hash tables exceeding the small hash limit")
507507
.category(OptionCategory.EXPERT)
508508
.stability(OptionStability.EXPERIMENTAL)
509509
.usageSyntax("")

0 commit comments

Comments
 (0)