Commit 9601c633 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix markup conflict in builtin RegExp class docs.

The "|" is used as table cell separator and inside a table cell
needs to be escaped with HTML entity.
parent 62ff5327
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@
 * |                  |
 * |                  | `/\d+(?!\.)/.exec("3.141")` matches 141 but not 3.141.
 * |                  |
 * | `x|y`            | Matches either `x` or `y`.
 * |<code>x&#124;y</code>| Matches either `x` or `y`.
 * |                  |
 * |                  | For example, `/green|red/` matches 'green' in "green apple" and 'red' in "red apple."
 * |                  |