aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRaymond Tay <raymondtay1974@gmail.com>2016-12-22 22:11:45 +0800
committerGitHub <noreply@github.com>2016-12-22 22:11:45 +0800
commitecfcb6def23becb90cf3235e881ae6a619cb5485 (patch)
tree4d426155fa94a44530dde97cf0e1bf68928dec64 /docs
parent404ce763d0f9ef82dae52e6aff3ec20950c67e29 (diff)
downloaddotty-ecfcb6def23becb90cf3235e881ae6a619cb5485.tar.gz
dotty-ecfcb6def23becb90cf3235e881ae6a619cb5485.tar.bz2
dotty-ecfcb6def23becb90cf3235e881ae6a619cb5485.zip
Point readers to correct file location
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/contributing/workflow.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docs/contributing/workflow.md b/docs/docs/contributing/workflow.md
index 48f71053e..fb8da0da3 100644
--- a/docs/docs/contributing/workflow.md
+++ b/docs/docs/contributing/workflow.md
@@ -33,7 +33,7 @@ Here are some useful debugging `<OPTIONS>`:
* `-Xprint:PHASE1,PHASE2,...` or `-Xprint:all`: prints the `AST` after each
specified phase. Phase names can be found by searching
- `src/dotty/tools/dotc/transform/` for `phaseName`.
+ `compiler/src/dotty/tools/dotc/transform/` for `phaseName`.
* `-Ylog:PHASE1,PHASE2,...` or `-Ylog:all`: enables `ctx.log("")` logging for
the specified phase.
* `-Ycheck:all` verifies the consistency of `AST` nodes between phases, in
@@ -42,7 +42,7 @@ Here are some useful debugging `<OPTIONS>`:
`-Ycheck:tailrec,resolveSuper,mixin,restoreScopes,labelDef`.
Additional logging information can be obtained by changes some `noPrinter` to
-`new Printer` in `src/dotty/tools/dotc/config/Printers.scala`. This enables the
+`new Printer` in `compiler/src/dotty/tools/dotc/config/Printers.scala`. This enables the
`subtyping.println("")` and `ctx.traceIndented("", subtyping)` style logging.
## Running tests ##