summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2025-10-09 12:19:00 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2025-10-09 12:19:00 +0900
commit5de042f4afb040d9760abcd8f0cf45521409b537 (patch)
tree46b6f25808398a41665511ff61d9ab3c36f2d898 /doc
parent317c9412a003f24d2b4beb07e55b6e07a9f248cc (diff)
Revert "[DOC] Fix rendering of $\ in globals.md"
This reverts commit 598a8f8914a4f7dd4694963c6de3714f49b3b64e, as RDoc 6.15 handles backslash in backquotes properly, and the previous commit rather rendered an extra backslash.
Diffstat (limited to 'doc')
-rw-r--r--doc/globals.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/globals.md b/doc/globals.md
index 419dcb3acd..b9315f5ff9 100644
--- a/doc/globals.md
+++ b/doc/globals.md
@@ -34,10 +34,10 @@ require 'English'
### Separators
-| Variable | English | Contains |
-|-------------|----------------------------|--------------------------------------------|
-| `$/` | `$INPUT_RECORD_SEPARATOR` | Input record separator; initially newline. |
-| `$\\\\` | `$OUTPUT_RECORD_SEPARATOR` | Output record separator; initially `nil`. |
+| Variable | English | Contains |
+|----------|----------------------------|--------------------------------------------|
+| `$/` | `$INPUT_RECORD_SEPARATOR` | Input record separator; initially newline. |
+| `$\` | `$OUTPUT_RECORD_SEPARATOR` | Output record separator; initially `nil`. |
### Streams
@@ -179,7 +179,7 @@ English - `$INPUT_RECORD_SEPARATOR`, `$RS`.
Aliased as `$-0`.
-### `$\\` (Output Record Separator)
+### `$\` (Output Record Separator)
An output record separator, initially `nil`.