Skip to content

Commit 6b9bd6e

Browse files
Merge pull request #712 from HairyFotr/typos2
Fix typos
2 parents 1b55033 + 010615e commit 6b9bd6e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ba/tutorials/tour/_posts/2017-02-13-nested-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ language: ba
1212
---
1313

1414
U Scali je moguće ugnježdavati definicije funkcija.
15-
Sljedeći objekt sadrži funkciju `filter` za dobijanje vrijednosti iz liste cijelih brojeva koji su manji od vrijednosti praga (treshold):
15+
Sljedeći objekt sadrži funkciju `filter` za dobijanje vrijednosti iz liste cijelih brojeva koji su manji od vrijednosti praga (threshold):
1616

1717
object FilterTest extends App {
1818
def filter(xs: List[Int], threshold: Int) = {

overviews/collections/trait-iterable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ num: 4
99
languages: [ja, zh-cn]
1010
---
1111

12-
The next trait from the top in the collections hierarchy is `Iterable`. All methods in this trait are defined in terms of an an abstract method, `iterator`, which yields the collection's elements one by one. The `foreach` method from trait `Traversable` is implemented in `Iterable` in terms of `iterator`. Here is the actual implementation:
12+
The next trait from the top in the collections hierarchy is `Iterable`. All methods in this trait are defined in terms of an abstract method, `iterator`, which yields the collection's elements one by one. The `foreach` method from trait `Traversable` is implemented in `Iterable` in terms of `iterator`. Here is the actual implementation:
1313

1414
def foreach[U](f: Elem => U): Unit = {
1515
val it = iterator

sips/completed/_posts/2016-06-25-trailing-commas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class Bippy(
199199

200200
## Implementation
201201

202-
The implementation of trailing commas is is limited to changing Parsers.scala in the Scala compiler. An implementation of this proposal can be found at [scala/scala#5245][].
202+
The implementation of trailing commas is limited to changing Parsers.scala in the Scala compiler. An implementation of this proposal can be found at [scala/scala#5245][].
203203

204204
## Drawbacks/Trade-offs
205205

sips/pending/_posts/2016-09-09-inline-meta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ A typical first line of a macro impl is `import c.universe._` that makes the ent
187187

188188
In addition to the compiler context, for every term parameter of a macro def, its macro impl
189189
takes a term parameter that carries a representation of the corresponding argument of the macro application.
190-
Macro impls can can also get ahold of representation of type arguments, but this functionality is unnecessary for this example.
190+
Macro impls can also get ahold of representation of type arguments, but this functionality is unnecessary for this example.
191191

192192
A macro impl returns an abstract syntax tree, and this AST replaces the original macro application in the compilation pipeline.
193193
This is how we're going to perform the LINQ translation of calls to `Query.map`.

0 commit comments

Comments
 (0)