Skip to content

Fix most errors in htmlproofer #2711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _es/overviews/parallel-collections/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ de la librería de colecciones secuenciales -- de hecho, "replican" los correspo
traits presentes en el framework de colecciones secuenciales, tal y como se muestra
a continuación.

[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)
[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" alt="Hierarchy of Scala Collections and Parallel Collections" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)

<center><b>Jerarquía de clases de las librerías de colecciones secuenciales y paralelas de Scala</b></center>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion _ja/overviews/macros/usecases.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Scala の商用ユーザと研究ユーザの両方がマクロを利用して
ここ EPFL においても我々はマクロを活用して研究を行っている。Lightbend 社もマクロを数々のプロジェクトに採用している。
マクロはコミュニティー内でも人気があり、既にいくつかの興味深い応用が現れている。

最近行われた講演の ["What Are Macros Good For?"](https://scalamacros.org/paperstalks/2013-07-17-WhatAreMacrosGoodFor.pdf) では Scala 2.10 ユーザのマクロの利用方法を説明し、システム化した。講演の大筋はマクロはコード生成、静的な検査、および DSL に有効であるということで、これを研究や産業からの例を交えながら説明した。
最近行われた講演の ["What Are Macros Good For?"](https://scalamacros.org/paperstalks/2014-02-04-WhatAreMacrosGoodFor.pdf) では Scala 2.10 ユーザのマクロの利用方法を説明し、システム化した。講演の大筋はマクロはコード生成、静的な検査、および DSL に有効であるということで、これを研究や産業からの例を交えながら説明した。

Scala'13 ワークショップにおいて ["Scala Macros: Let Our Powers Combine!"](https://scalamacros.org/paperstalks/2013-04-22-LetOurPowersCombine.pdf) という論文を発表した。これは Scala 2.10 における最先端のマクロ論をより学問的な視点から説明した。
この論文では Scala のリッチな構文と静的な型がマクロと相乗することを示し、また既存の言語機能をマクロによって新しい方法で活用できることを考察する。
2 changes: 1 addition & 1 deletion _ja/overviews/parallel-collections/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ language: ja
Scala の並列コレクションは、Scala の(順次)コレクションライブラリの設計から多大な影響を受けている。
以下に示すよう、トレイト群は通常のコレクションフレームワーク内のトレイト群を鏡写しのように対応している。

[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)
[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" alt="Hierarchy of Scala Collections and Parallel Collections" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)

<center><b>Scala のコレクションと並列コレクションライブラリの継承関係</b></center>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion _ja/tour/implicit-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Scalaがこれらのパラメータを探す場所は2つのカテゴリに分
* Scalaはまず最初に暗黙のパラメータブロックを持つメソッドが呼び出されている箇所で、直接(プレフィックスなしに)アクセスできる暗黙の定義と暗黙のパラメータを探します。
* 次に、候補となる型に関連づけられた全てのコンパニオンオブジェクトの中でimplicitと宣言されているメンバーを探します。

Scalaがimplicitをどこから見つけるかについてのより詳しいガイドは[FAQ](//docs.scala-lang.org/tutorials/FAQ/finding-implicits.html)で見ることができます。
Scalaがimplicitをどこから見つけるかについてのより詳しいガイドは[FAQ](/tutorials/FAQ/finding-implicits.html)で見ることができます。

以下の例では、モノイドの`add`と`unit`の演算を使い、要素のリストの合計を計算するメソッド`sum`を定義しています。
implicitの値をトップレベルには置けないことに注意してください。
Expand Down
2 changes: 1 addition & 1 deletion _overviews/core/architecture-of-scala-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ storing the strings "abc", "abd", "al", "all" and "xy" would look
like this:

A sample patricia trie:
<img src="{{ site.baseurl }}/resources/images/patricia.png" width="550">
<img src="{{ site.baseurl }}/resources/images/patricia.png" alt="Patricia trie" width="550">

To find the node corresponding to the string "abc" in this trie,
simply follow the subtree labeled "a", proceed from there to the
Expand Down
2 changes: 1 addition & 1 deletion _overviews/core/custom-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ storing the strings "abc", "abd", "al", "all" and "xy" would look
like this:

A sample patricia trie:
<img src="{{ site.baseurl }}/resources/images/patricia.png" width="550">
<img src="{{ site.baseurl }}/resources/images/patricia.png" alt="Patricia trie" width="550">

To find the node corresponding to the string "abc" in this trie,
simply follow the subtree labeled "a", proceed from there to the
Expand Down
2 changes: 1 addition & 1 deletion _overviews/parallel-collections/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Scala's parallel collection's draws much inspiration from the design of
Scala's (sequential) collections library-- as a matter of fact, it mirrors the
regular collections framework's corresponding traits, as shown below.

[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)
[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" alt="Hierarchy of Scala Collections and Parallel Collections" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)

<center><b>Hierarchy of Scala's Collections and Parallel Collections Libraries</b></center>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion _ru/overviews/parallel-collections/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ _Примечание:_ Если есть два `Combiner`а, `c1` и `c2` гд

Параллельные коллекции Scala во многом созданы под влиянием дизайна библиотеки (последовательных) коллекций Scala. На рисунке ниже показано, что их дизайн фактически отражает соответствующие трейты фреймворка обычных коллекций.

[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)
[<img src="{{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png" alt="parallel Collections Hierarchy" width="550">]({{ site.baseurl }}/resources/images/parallel-collections-hierarchy.png)

<center><b>Иерархия библиотеки Scala: коллекции и параллельные коллекции</b></center>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion _ru/tour/implicit-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ previous-page: self-types
* Скала сначала будет искать неявные параметры, доступ к которым можно получить напрямую (без префикса) в месте вызова метода в котором запрошены неявные параметры.
* Затем он ищет членов, помеченных как implicit во всех объектах компаньонах, связанных с типом неявного параметра.

Более подробное руководство, о том где scala ищет неявные значения можно найти в [FAQ](//docs.scala-lang.org/tutorials/FAQ/finding-implicits.html)
Более подробное руководство, о том где scala ищет неявные значения можно найти в [FAQ](/tutorials/FAQ/finding-implicits.html)

В следующем примере мы определяем метод `sum`, который вычисляет сумму элементов списка, используя операции `add` и `unit` моноида. Обратите внимание, что неявные значения не могут находится выше уровнем.

Expand Down
2 changes: 1 addition & 1 deletion _tour/implicit-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ Scala will look for available given values in two places:
* Scala will first look for given definitions and using parameters that can be accessed directly (without a prefix) at the call site of `max`.
* Then it looks for members marked `given`/`implicit` in the companion objects associated with the implicit candidate type (for example: `object Comparator` for the candidate type `Comparator[Int]`).

A more detailed guide to where Scala looks for implicits can be found in [the FAQ](//docs.scala-lang.org/tutorials/FAQ/finding-implicits.html).
A more detailed guide to where Scala looks for implicits can be found in [the FAQ](/tutorials/FAQ/finding-implicits.html).
2 changes: 1 addition & 1 deletion _zh-cn/tour/implicit-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Scala 将查找这些参数的位置分为两类:
* Scala 在调用包含有隐式参数块的方法时,将首先查找可以直接访问的隐式定义和隐式参数 (无前缀)。
* 然后,它在所有伴生对象中查找与隐式候选类型相关的有隐式标记的成员。

更加详细的关于 Scala 到哪里查找隐式参数的指南请参考 [常见问题](//docs.scala-lang.org/tutorials/FAQ/finding-implicits.html)
更加详细的关于 Scala 到哪里查找隐式参数的指南请参考 [常见问题](/tutorials/FAQ/finding-implicits.html)

在下面的例子中,我们定义了一个方法 `sum`,它使用 Monoid 类的 `add` 和 `unit` 方法计算一个列表中元素的总和。 请注意,隐式值不能是顶级值。

Expand Down