Skip to content

Commit fb4a4e8

Browse files
Merge pull request #633 from brandonzylstra/patch-2
2 parents 728975b + 8732891 commit fb4a4e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
# FAQ
88

9-
## Where my `puts` output goes?
9+
## Where does my `puts` output go?
1010

11-
By default, `puts` output goes to `STDOUT` which is a JavaScript `console.log` function. You can override it by setting `$stdout` to a Ruby object which has `write` method.
11+
By default, `puts` output goes to `STDOUT` which is a JavaScript `console.log` function. You can override it by setting `$stdout` to a Ruby object which has a `write` method.
1212

1313
```ruby
1414
$stdout = Object.new.tap do |obj|

0 commit comments

Comments
 (0)