File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,13 @@ package scala
16
16
* An annotation for methods that the optimizer should inline.
17
17
*
18
18
* Note that by default, the Scala optimizer is disabled and no callsites are inlined. See
19
- * `-opt:help` for information on how to enable the optimizer and inliner.
19
+ * `-opt:help` and [[https://docs.scala-lang.org/overviews/compiler-options/optimizer.html the overview document ]]
20
+ * for information on how to enable the optimizer and inliner.
20
21
*
21
22
* When inlining is enabled, the inliner will always try to inline methods or callsites annotated
22
- * `@inline` (under the condition that inlining from the defining class is allowed, see
23
- * `-opt-inline-from:help`). If inlining is not possible, for example because the method is not
24
- * final, an optimizer warning will be issued. See `-opt-warnings :help` for details.
23
+ * `@inline` (under the condition that inlining from the defining class is allowed).
24
+ * If inlining is not possible, for example because the method is not
25
+ * final, an optimizer warning will be issued. See `-Wopt :help` for details.
25
26
*
26
27
* Examples:
27
28
*
You can’t perform that action at this time.
0 commit comments