Skip to content

Commit 515655e

Browse files
authored
Merge pull request #543 from ashawley/fix-hacker-guide-formatting
Fix formatting problems in hacker guide
2 parents 1f76fc9 + ebac612 commit 515655e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

contribute/hacker-guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ When hacking on your topic of choice, you'll be modifying Scala, compiling it an
133133
Typically you would want to first make sure that your changes work on a small example and afterwards verify that nothing break
134134
by running a comprehensive test suite.
135135

136-
We'll start by creating a `sandbox` directory (`./sandbox is listed in the .gitignore of the Scala repository), which will hold a single test file and its compilation results. First, let's make sure that
136+
We'll start by creating a `sandbox` directory (`./sandbox` is listed in the .gitignore of the Scala repository), which will hold a single test file and its compilation results. First, let's make sure that
137137
[the bug](https://issues.scala-lang.org/browse/SI-6725) is indeed reproducible by putting together a simple test and compiling and running it with the Scala compiler that we built using `sbt`. The Scala compiler that we just built is located in `build/pack/bin`.
138138

139139
17:25 ~/Projects/scala (ticket/6725)$ mkdir sandbox
@@ -172,6 +172,7 @@ Listening for transport dt_socket at address: 8002
172172
to some, I'd like to explicitly mention that it's also useful to print stack traces to understand the flow of execution. When working with `Trees`, you might want to use `showRaw` to get the `AST` representation.
173173
* You can publish your newly-built scala version locally using the `publishLocal` task in sbt.
174174
* It's convenient to enable the following local settings to speed up your workflow (put these in `local.sbt` in your working copy):
175+
175176
```
176177
// skip docs for local publishing
177178
publishArtifact in (Compile, packageDoc) in ThisBuild := false

0 commit comments

Comments
 (0)