8000 Fix formatting of Binary Operations · DarkDimius/scala.github.com@24eef0e · GitHub
[go: up one dir, main page]

Skip to content
  • Commit 24eef0e

    Browse files
    committed
    Fix formatting of Binary Operations
    The formatting of the Binary Operations portion of the Operations in Class Set was messed up (due to the pipe character being interpreted as part of the table specification). Unfortunately, there seems to be no way to escape a pipe character within backticks, so I've had to resort to using <code> tags.
    1 parent 04a5c0b commit 24eef0e

    File tree

    1 file changed

    +2
    -2
    lines changed

    1 file changed

    +2
    -2
    lines changed

    overviews/collections/sets.md

    Lines changed: 2 additions & 2 deletions
    Original file line numberDiff line numberDiff line change
    @@ -48,8 +48,8 @@ For example
    4848
    | **Binary Operations:** | |
    4949
    | `xs & ys` |The set intersection of `xs` and `ys`. |
    5050
    | `xs intersect ys` |Same as `xs & ys`. |
    51-
    | `xs | ys` |The set union of `xs` and `ys`. |
    52-
    | `xs union ys` |Same as `xs | ys`. |
    51+
    | <code>xs &#124; ys</code> |The set union of `xs` and `ys`. |
    52+
    | `xs union ys` |Same as <code>xs &#124; ys</code>. |
    5353
    | `xs &~ ys` |The set difference of `xs` and `ys`. |
    5454
    | `xs diff ys` |Same as `xs &~ ys`. |
    5555

    0 commit comments

    Comments
     (0)
    0