Ruby: Inline expectation should have space after $

This was a regex-find-replace from `# \$(?! )` (using a negative lookahead) to `# $ `.
This commit is contained in:
Owen Mansel-Chan
2026-03-04 11:42:15 +00:00
parent 5a97348e78
commit 6001c735ff
12 changed files with 193 additions and 193 deletions

View File

@@ -163,7 +163,7 @@ module InsecureDownload {
//
// ```rb
// f = File.open("foo.exe")
// f.write(Excon.get(...).body) # $BAD=
// f.write(Excon.get(...).body) # $ BAD=
// ```
//
// `f` is the `FileSystemAccess` and the call `f.write` is the `IO::FileWriter`.