Skip to content

Commit

Permalink
fix: typo in no-process-global lint error (#1332)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Sep 24, 2024
1 parent c82c3d2 commit d893b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/no_process_global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use deno_ast::SourceRangedForSpanned;
pub struct NoProcessGlobal;

const CODE: &str = "no-process-globals";
const MESSAGE: &str = "NodeJS process global is discouraged Deno";
const MESSAGE: &str = "NodeJS process global is discouraged in Deno";

impl LintRule for NoProcessGlobal {
fn lint_program_with_ast_view<'view>(
Expand Down

0 comments on commit d893b78

Please sign in to comment.