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.
This commit is contained in:
Nobuyoshi Nakada 2025-10-09 12:19:00 +09:00
parent 317c9412a0
commit 5de042f4af
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2025-10-09 03:26:43 +00:00

View File

@ -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`.