Skip to content
Snippets Groups Projects
Commit 4c7b7924 authored by Brett Walker's avatar Brett Walker
Browse files

Fix typo in method name "silence_stderr"

parent 9ce28bf0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -82,7 +82,7 @@ namespace :gettext do
 
# `gettext:find` writes touches to temp files to `stderr` which would cause
# `static-analysis` to report failures. We can ignore these.
silence_sdterr do
silence_stderr do
Rake::Task['gettext:find'].invoke
end
 
Loading
Loading
@@ -119,7 +119,7 @@ namespace :gettext do
end
end
 
def silence_sdterr(&block)
def silence_stderr(&block)
old_stderr = $stderr.dup
$stderr.reopen(File::NULL)
$stderr.sync = true
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment