Skip to content

Commit 6abc977

Browse files
Merge pull request #7266 from dotty-staging/fix-broken-links
Fix or remove broken links
2 parents 75de330 + 9d6851a commit 6abc977

File tree

8 files changed

+8
-13
lines changed

8 files changed

+8
-13
lines changed

docs/blog/_posts/2016-01-02-new-year-resolutions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ power wisely, and to promote simplicity of usage wherever possible.
4040
Unfortunately, most of us fall all too easily into the complexity
4141
trap, as Alex Payne's tweet sums it up very nicely.
4242

43-
<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">“Complexity is like a bug light for smart people. We can&#39;t resist it, even though we know it&#39;s bad for us.” <a href="https://t.co/V9Izi573CF">https://t.co/V9Izi573CF</a></p>&mdash; Alex Payne (@al3x) <a href="https://twitter.com/al3x/status/683036775942496256">January 1, 2016</a></blockquote>
43+
<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">“Complexity is like a bug light for smart people. We can&#39;t resist it, even though we know it&#39;s bad for us.” <a href="https://t.co/V9Izi573CF">https://t.co/V9Izi573CF</a></p>&mdash; Alex Payne (@al3x) <a href="https://twitter.com/al3x">January 1, 2016</a></blockquote>
4444
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
4545

4646
I have been as guilty of complication as everybody else. Is

docs/blog/_posts/2018-07-06-ninth-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ more important.
9999
Starting with 1.1.5 Dotty compiler plugins can be used with `sbt`. Please refer to the `sbt`
100100
[documentation](https://www.scala-sbt.org/1.x/docs/Compiler-Plugins.html) for more information.
101101

102-
For more information, visit the [Compiler Plugin](https://dotty.epfl.ch/docs/reference/changed/compiler-plugins.html)
102+
For more information, visit the [Compiler Plugin](https://dotty.epfl.ch/docs/reference/changed-features/compiler-plugins.html)
103103
section of our documentation.
104104

105105
## Trying out Dotty

docs/blog/_posts/2019-04-15-14th-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ For more information, please see the [documentation](https://dotty.epfl.ch/docs/
125125
Some of the other changes include:
126126

127127
- `infer` method renamed to `the`, the semantics of which is now the same as that of the `the` method of Shapeless. Namely, the implicits are resolved more precisely – see this [gist](https://gist.github.com/milessabin/8833a1dbf7e8245b30f8) for an example in Shapeless, and the Dotty [documentation](https://dotty.epfl.ch/docs/reference/contextual/given-clauses.html#querying-implied-instances) for more details.
128-
- The syntax of quoting and splicing was changed. Now the quoting is expressed via `'{ ... }` and `'[...]` and splicing – via `${...}` and `$id`. Please see the [documentation](https://dotty.epfl.ch/docs/reference/metaprogramming/principled-meta-programming.html) for more details on these features.
128+
- The syntax of quoting and splicing was changed. Now the quoting is expressed via `'{ ... }` and `'[...]` and splicing – via `${...}` and `$id`. Please see the [documentation](https://dotty.epfl.ch/docs/reference/metaprogramming/macros.html) for more details on these features.
129129

130130
# Let us know what you think!
131131

docs/docs/reference/contextual-new/implicit-function-types-spec.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ documentation](../dropped-features/limit22.md).
7070

7171
See the section on Expressiveness from [Simplicitly: foundations and
7272
applications of implicit function
73-
types](https://dl.acm.org/citation.cfm?id=3158130). I've extracted it in [this
74-
Gist](https://gist.github.com/OlivierBlanvillain/234d3927fe9e9c6fba074b53a7bd9
75-
592), it might easier to access than the pdf.
73+
types](https://dl.acm.org/citation.cfm?id=3158130).
7674

7775
### Type Checking
7876

docs/docs/reference/contextual/implicit-function-types-spec.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ documentation](../dropped-features/limit22.md).
7575

7676
See the section on Expressiveness from [Simplicitly: foundations and
7777
applications of implicit function
78-
types](https://dl.acm.org/citation.cfm?id=3158130). I've extracted it in [this
79-
Gist](https://gist.github.com/OlivierBlanvillain/234d3927fe9e9c6fba074b53a7bd9
80-
592), it might easier to access than the pdf.
78+
types](https://dl.acm.org/citation.cfm?id=3158130).
8179

8280
### Type Checking
8381

docs/docs/reference/metaprogramming/simple-smp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "The Meta-theory of Symmetric Meta-programming"
44
---
55

66
This note presents a simplified variant of
7-
[principled meta-programming](./principled-meta-programming.md)
7+
[principled meta-programming](./macros.md)
88
and sketches its soundness proof. The variant treats only dialogues
99
between two stages. A program can have quotes which can contain
1010
splices (which can contain quotes, which can contain splices, and so

docs/docs/reference/new-types/implicit-function-types-spec.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ documentation](../dropped-features/limit22.md).
7878

7979
See the section on Expressiveness from [Simplicitly: foundations and
8080
applications of implicit function
81-
types](https://dl.acm.org/citation.cfm?id=3158130). I've extracted it in [this
82-
Gist](https://gist.github.com/OlivierBlanvillain/234d3927fe9e9c6fba074b53a7bd9592), it might easier to access than the pdf.
81+
types](https://dl.acm.org/citation.cfm?id=3158130).
8382

8483
### Type Checking
8584

docs/docs/release-notes/0.1.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ This release ships with the following features:
8888
[12]: https://github.com/lampepfl/dotty/commit/b2215ed23311b2c99ea638f9d7fcad9737dba588
8989
[13]: https://github.com/lampepfl/dotty/pull/187
9090
[14]: https://github.com/lampepfl/dotty/pull/217
91-
[15]: ../reference/other-new-features/trait-parameters.md
91+
[15]: ../reference/other-new-features/trait-parameters.html
9292
[16]: https://github.com/lampepfl/dotty/commit/89540268e6c49fb92b9ca61249e46bb59981bf5a
9393
[17]: https://github.com/lampepfl/dotty/pull/174
9494
[18]: https://github.com/lampepfl/dotty/pull/488

0 commit comments

Comments
 (0)