Skip to content

Commit e5fc7de

Browse files
committed
Fix warnings during generateScalaDocumentation
1 parent 5608501 commit e5fc7de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/_docs/contributing/scaladoc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ You can also run specific signature tests with `testOnly`,
7474
for example `scaladoc/testOnly *scaladoc.signatures.MarkdownCode`.
7575

7676
Most tests rely on comparing signatures (of classes, methods, objects etc.) extracted from the generated documentation
77-
to signatures found in source files (extracted using Scalameta). Such tests are defined using [SignatureTest](test/dotty/tools/scaladoc/signatures/SignatureTest.scala) class
78-
and its subtypes (such as [TranslatableSignaturesTestCases](test/dotty/tools/scaladoc/signatures/TranslatableSignaturesTestCases.scala)). In this style of test, it's not necessary for expected output to be included, because the test is its own specification.
77+
to signatures found in source files (extracted using Scalameta). Such tests are defined using [SignatureTest](https://github.com/scala/scala3/blob/main/scaladoc/test/dotty/tools/scaladoc/signatures/SignatureTest.scala) class
78+
and its subtypes (such as [TranslatableSignaturesTestCases](https://github.com/scala/scala3/blob/main/scaladoc/test/dotty/tools/scaladoc/signatures/TranslatableSignaturesTestCases.scala)). In this style of test, it's not necessary for expected output to be included, because the test is its own specification.
7979

8080
WARNING: As the classes mentioned above are likely to evolve, the description below might easily get out of date.
8181
In case of any discrepancies rely on the source files instead.

docs/_docs/reference/metaprogramming/reflection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The above is represented in the quotes reflect API by a `Block` (a subtype of `T
8686
```
8787

8888
You can see the whole hierarchy between different types of Trees in
89-
[`reflectModule` documentation](https://scala-lang.org/api/3.3_LTS/scala/quoted/Quotes$reflectModule.html#`).
89+
[`reflectModule` documentation](https://scala-lang.org/api/3.3_LTS/scala/quoted/Quotes$reflectModule.html).
9090

9191
You can also check the shape of code by printing out quoted code transformed into a Term:
9292
```scala

0 commit comments

Comments
 (0)