8000 fix table layout · yanana/scala.github.com@ea321c6 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit ea321c6

Browse files
committed
fix table layout
1 parent 65583e8 commit ea321c6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ja/overviews/collections/maps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ language: ja
2828
| `ms(k)` |(展開した場合、`ms apply k`) マップ `ms` 内のキー `k` に関連付けられた値、もしくは、キーが見つからない場合は例外。|
2929
| `ms getOrElse (k, d)` |マップ `ms` 内のキー `k` に関連付けられた値、もしくは、キーが見つからない場合、デフォルト値 `d`|
3030
| `ms contains k` |`ms` がキー `k` への写像を含むかを調べる。|
31-
| `ms isDefinedAt k` |`contains` に同じ。 |
31+
| `ms isDefinedAt k` |`contains` に同じ。 |
3232
| **加算と更新演算:**| |
3333
| `ms + (k -> v)` |`ms` 内の全ての写像と、キー `k` から値 `v` への写像 `k -> v` を含むマップ。|
3434
| `ms + (k -> v, l -> w)` |`ms` 内の全ての写像と、渡されたキーと値のペアを含むマップ。|
3535
| `ms ++ kvs` |`ms` 内の全ての写像と、`kvs`内の全てのキーと値のペアを含むマップ。|
3636
| `ms updated (k, v)` |`ms + (k -> v)` に同じ。|
3737
| **減算:** | |
38-
| `ms - k` |キー `k` からの写像を除く、`ms` 内の全ての写像。|
39-
| `ms - (k, 1, m)` |渡されたキーからの写像を除く、`ms` 内の全ての写像。|
40-
| `ms -- ks` |`ks`内のキーからの写像を除く、`ms` 内の全ての写像。|
38+
| `ms - k` |キー `k` からの写像を除く、`ms` 内の全ての写像。|
39+
| `ms - (k, 1, m)` |渡されたキーからの写像を除く、`ms` 内の全ての写像。|
40+
| `ms -- ks` |`ks`内のキーからの写像を除く、`ms` 内の全ての写像。|
4141
| **サブコレクション取得演算:** | |
4242
| `ms.keys` |`ms`内の全てのキーを含む iterable。|
4343
| `ms.keySet` |`ms`内の全てのキーを含む集合。|

overviews/collections/maps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ The fundamental operations on maps are similar to those on sets. They are summar
2828
| `ms(k)` |(or, written out, `ms apply k`) The value associated with key `k` in map `ms`, or exception if not found.|
2929
| `ms getOrElse (k, d)` |The value associated with key `k` in map `ms`, or the default value `d` if not found.|
3030
| `ms contains k` |Tests whether `ms` contains a mapping for key `k`.|
31-
| `ms isDefinedAt k` |Same as `contains`. |
31+
| `ms isDefinedAt k` |Same as `contains`. |
3232
| **Additions and Updates:**| |
3333
| `ms + (k -> v)` |The map containing all mappings of `ms` as well as the mapping `k -> v` from key `k` to value `v`.|
3434
| `ms + (k -> v, l -> w)` |The map containing all mappings of `ms` as well as the given key/value pairs.|
3535
| `ms ++ kvs` |The map containing all mappings of `ms` as well as all key/value pairs of `kvs`.|
3636
| `ms updated (k, v)` |Same as `ms + (k -> v)`.|
3737
| **Removals:** | |
38-
| `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.|
39-
| `ms - (k, 1, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.|
40-
| `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.|
38+
| `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.|
39+
| `ms - (k, 1, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.|
40+
| `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.|
4141
| **Subcollections:** | |
4242
| `ms.keys` |An iterable containing each key in `ms`. |
4343
| `ms.keySet` |A set containing each key in `ms`. |

0 commit comments

Comments
 (0)
0