Skip to content

Commit

Permalink
Fix a typo in the activation script (#2802)
Browse files Browse the repository at this point in the history
I for sure thought it would change meaning but turns out this space doesn't matter and the ast is the same.
  • Loading branch information
Earlopain authored Oct 30, 2024
1 parent eadd431 commit ffa9895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/ruby/versionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const ACTIVATION_SEPARATOR = "RUBY_LSP_ACTIVATION_SEPARATOR";
export abstract class VersionManager {
public activationScript = [
`STDERR.print("${ACTIVATION_SEPARATOR}" + `,
"{ env: ENV.to_h, yjit: !!defined?(RubyVM:: YJIT), version: RUBY_VERSION, gemPath: Gem.path }.to_json + ",
"{ env: ENV.to_h, yjit: !!defined?(RubyVM::YJIT), version: RUBY_VERSION, gemPath: Gem.path }.to_json + ",
`"${ACTIVATION_SEPARATOR}")`,
].join("");

Expand Down

0 comments on commit ffa9895

Please sign in to comment.