Skip to content

Commit 1bdb40c

Browse files
committed
Fix typos
1 parent 59fcde7 commit 1bdb40c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ major authors were omitted by oversight.
8383
Adriaan Moors, Paul Phillips and others.
8484

8585
* dotty.tools.dottydoc: The Dottydoc documentation utility ships some
86-
third-party Javascript and CSS libraries which are located under
86+
third-party JavaScript and CSS libraries which are located under
8787
dotty-doc/resources/css/, dotty-doc/resources/js/, docs/css/ and
8888
docs/js/. Please refer to the license header of the concerned files for
8989
details.

compiler/src/dotty/tools/io/AbstractFile.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ abstract class AbstractFile extends Iterable[AbstractFile] {
238238
private def fileOrSubdirectoryNamed(name: String, isDir: Boolean): AbstractFile =
239239
lookupName(name, isDir) match {
240240
case null =>
241-
// the optional exception may be thrown for symlinks, notably /tmp on MacOS.
241+
// the optional exception may be thrown for symlinks, notably /tmp on macOS.
242242
// isDirectory tests for existing directory. The default behavior is hypothetical isDirectory(jpath, FOLLOW_LINKS).
243243
try Files.createDirectories(jpath)
244244
catch { case _: FileAlreadyExistsException if Files.isDirectory(jpath) => }

docs/blog/_posts/2018-10-10-10th-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Releases are available for download on the _Releases_
162162
section of the Dotty repository:
163163
[https://github.com/lampepfl/dotty/releases](https://github.com/lampepfl/dotty/releases)
164164

165-
For MacOs users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
165+
For macOS users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
166166
running:
167167

168168
```shell

docs/blog/_posts/2018-11-30-11th-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Releases are available for download on the _Releases_
148148
section of the Dotty repository:
149149
[https://github.com/lampepfl/dotty/releases](https://github.com/lampepfl/dotty/releases)
150150

151-
For MacOs users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
151+
For macOS users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
152152
running:
153153

154154
```shell

docs/blog/_posts/2019-01-21-12th-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Releases are available for download on the _Releases_
139139
section of the Dotty repository:
140140
[https://github.com/lampepfl/dotty/releases](https://github.com/lampepfl/dotty/releases)
141141

142-
For MacOs users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
142+
For macOS users, we also provide a [homebrew](https://brew.sh/) package that can be installed by
143143
running:
144144

145145
```shell

docs/docs/contributing/debug-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Tests for Debuggability
88
- JDB
99
- expect
1010

11-
Both are usually pre-installed on Mac OS and linux distributions.
11+
Both are usually pre-installed on macOS and linux distributions.
1212

1313
## Debug Manually with JDB
1414

docs/docs/reference/contextual/multiversal-equality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ work under `-language:strictEquality`, since otherwise the universal `Eq[Any]` i
210210

211211

212212
More on multiversal equality is found in a [blog post](http://www.scala-lang.org/blog/2016/05/06/multiversal-equality.html)
213-
and a [Github issue](https://github.com/lampepfl/dotty/issues/1247).
213+
and a [GitHub issue](https://github.com/lampepfl/dotty/issues/1247).

0 commit comments

Comments
 (0)