Skip to content

Commit 4a54c76

Browse files
authored
Merge pull request #2559 from dotty-staging/updateD
Capitalize Dotty in docs
2 parents 27a5526 + a723ebd commit 4a54c76

10 files changed

+18
-18
lines changed

docs/blog/_posts/2015-10-23-dotty-compiler-bootstraps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fine, yet gets translated to something subtly wrong by the compiler.
2929

3030
Having the compiler compile itself is a good test to demonstrate that
3131
the generated code has reached a certain level of quality. Not only is
32-
a compiler a large program (44k lines in the case of dotty), it is
32+
a compiler a large program (44k lines in the case of Dotty), it is
3333
also one that exercises a large part of the language in quite
3434
intricate ways. Moreover, bugs in the code of a compiler don't tend to
3535
go unnoticed, precisely because every part of a compiler feeds into

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ there are a couple of things where I would like to do better in 2016
1111
than in 2015. The first is that I would like to do more blogging and
1212
writing in general. I have been pretty silent for most of the last
1313
year. This was mostly caused by the fact that I had been heads down to
14-
work on DOT, Scala's foundations, and _dotty_, the new Scala compiler
14+
work on DOT, Scala's foundations, and _Dotty_, the new Scala compiler
1515
platform we are working on. It's been a lot of work, but we are finally
1616
getting good results. DOT now has a mechanized proof of type soundness
17-
and the dotty compiler [can now compile
17+
and the Dotty compiler [can now compile
1818
itself](http://www.scala-lang.org/blog/2015/10/23/dotty-compiler-bootstraps.html)
1919
as well as large parts of Scala's standard library.
2020

21-
The dotty compiler has a completely new and quite unusual
21+
The Dotty compiler has a completely new and quite unusual
2222
architecture, which makes it resemble a functional database or a
2323
functional reactive program. My [talk at the JVM language
2424
summit](https://www.youtube.com/watch?v=WxyyJyB_Ssc) gives an

docs/blog/_posts/2016-02-03-essence-of-scala.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ project are important.
131131
wildcard parameters `[_ <: T]`, `[_ >: T]` should be.
132132

133133
3. DOT also provides a blueprint for Scala compilation. The new Scala
134-
compiler _dotty_ has internal data structures that closely resemble DOT.
134+
compiler _Dotty_ has internal data structures that closely resemble DOT.
135135
In particular, type parameters are immediately mapped to type members,
136136
in the way we propose to encode them also in the calculus.
137137

docs/blog/_posts/2016-02-17-scaling-dot-soundness.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ categories:
7070
We can in fact construct soundness issues in all of these cases. Look
7171
at the discussion for issues [#50](https://github.com/lampepfl/dotty/issues/50)
7272
and [#1050](https://github.com/lampepfl/dotty/issues/1050) in the
73-
[dotty](https://github.com/lampepfl/dotty/issues/1050) repository
73+
[Dotty](https://github.com/lampepfl/dotty/issues/1050) repository
7474
on GitHub. All issues work fundamentally in the same way: Construct a type `S`
7575
which has a type member `T` with bad bounds, say
7676

@@ -138,7 +138,7 @@ arithmetic.
138138

139139
To ease the transition, we will continue for a while to allow unrestricted type
140140
projections under a flag, even though they are potentially
141-
unsound. In the current dotty compiler, that flag is a language import
141+
unsound. In the current Dotty compiler, that flag is a language import
142142
`-language:Scala2`, but it could be something different for other
143143
compilers, e.g. `-unsafe`. Maybe we can find rules that are less
144144
restrictive than the ones we have now, and are still sound. But one

docs/blog/_posts/2016-12-05-implicit-function-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ scenarios where plain parameters would be too cumbersome. For
5353
instance, type classes would be a lot less popular if one would have
5454
to pass all dictionaries by hand. Implicit parameters are also very
5555
useful as a general context passing mechanism. For instance in the
56-
_dotty_ compiler, almost every function takes an implicit context
56+
_Dotty_ compiler, almost every function takes an implicit context
5757
parameter which defines all elements relating to the current state of
5858
the compilation. This is in my experience much better than the cake
5959
pattern because it is lightweight and can express context changes in a
@@ -151,7 +151,7 @@ implicit parameter:
151151

152152
A three-times repetition might not look so bad here, but it certainly
153153
smells of boilerplate. In real-sized projects, this can get much worse.
154-
For instance, the _dotty_ compiler uses implicit abstraction
154+
For instance, the _Dotty_ compiler uses implicit abstraction
155155
over contexts for most of its parts. Consequently it ends up with currently
156156
no fewer than 2641 occurrences of the text string
157157

@@ -180,7 +180,7 @@ type of `f1` is:
180180

181181
Just like the normal function type syntax `A => B`, desugars to `scala.Function1[A, B]`
182182
the implicit function type syntax `implicit A => B` desugars to `scala.ImplicitFunction1[A, B]`.
183-
The same holds at other function arities. With dotty's [pull request #1758](https://github.com/lampepfl/dotty/pull/1758)
183+
The same holds at other function arities. With Dotty's [pull request #1758](https://github.com/lampepfl/dotty/pull/1758)
184184
merged there is no longer an upper limit of 22 for such functions.
185185

186186
The type `ImplicitFunction1` can be thought of being defined as follows:

docs/docs/contributing/backend.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ lives at
88

99
> https://github.com/lampepfl/scala/tree/sharing-backend
1010
11-
The dotty source tree contains a git submodule in the directory
11+
The Dotty source tree contains a git submodule in the directory
1212
[scala-backend](https://github.com/lampepfl/dotty/tree/master/scala-backend)
1313
that points to this fork. We do not compile every file in this submodule,
1414
instead we add the subset of files we need to the dotty-compiler project in the
@@ -60,14 +60,14 @@ $ cd ..
6060
```
6161

6262
Once your PR has been merged into the backend, you'll need to make another PR
63-
against dotty itself to update the backend, the following commands should be run
64-
in the root dotty repository, not in the submodule:
63+
against Dotty itself to update the backend, the following commands should be run
64+
in the root Dotty repository, not in the submodule:
6565

6666
``` shell
6767
# The --remote option will update the submodule to the latest commit in the
6868
# https://github.com/lampepfl/dotty/tree/master/scala-backend branch
6969
git submodule update --init --remote
7070

7171
git commit -am "Update backend to include ..."
72-
# Then push and make a PR against dotty as usual
72+
# Then push and make a PR against Dotty as usual
7373
```

docs/docs/contributing/intellij-idea.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Setup
88

99
You can setup IntelliJ [IDEA >= 2016.1](https://www.jetbrains.com/idea/nextversion) to run Dotty.
1010

11-
Assuming you have cloned dotty's repository from Github (and run `sbt managedSources` as described in [Getting Started](getting-started.md)),
11+
Assuming you have cloned Dotty's repository from Github (and run `sbt managedSources` as described in [Getting Started](getting-started.md)),
1212
you can now proceed with importing it to IDEA by selecting the
1313
corresponding option from the startup menu. Navigate on the corresponding directory and select it. Next, you need
1414
to select the model of the import and as the screenshot shows, select SBT.

docs/docs/internals/classpaths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ file:/usr/lib/jvm/java-7-oracle/jre/lib/ext/sunpkcs11.jar:file:/usr/lib/jvm/java
4343
=====================================================
4444
```
4545
Since scala/dotty only pick up `java.class.path` and `sun.boot.class.path`,
46-
it's clear why dotty crashes in sbt and Eclipse unless we set the boot
46+
it's clear why Dotty crashes in sbt and Eclipse unless we set the boot
4747
classpath explicitly.

docs/docs/usage/cbt-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: doc-page
33
title: "Using Dotty with cbt"
44
---
55

6-
cbt comes with built-in dotty support. Follow the
6+
cbt comes with built-in Dotty support. Follow the
77
[cbt tutorial](https://github.com/cvogt/cbt/), then simply extend `Dotty` in the Build class.
88

99
```scala

docs/docs/usage/dottydoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,5 +256,5 @@ A blog page uses files placed in `./blog/_posts/` as input to render a blog.
256256

257257
Default Includes
258258
================
259-
* `scala-logo.svg`: the scala in dotty version as svg
259+
* `scala-logo.svg`: the scala in Dotty version as svg
260260
* `toc.html`: the default table of contents template

0 commit comments

Comments
 (0)