Skip to content

Commit 0e4fce8

Browse files
committed
Minor improvements
1 parent ecfaa66 commit 0e4fce8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

contribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This website is an open-source repository of official Scala documentation, hoste
1313

1414
### A Need for Better Documentation
1515

16-
The availability, depth, and quality of documentation [is considered by many to be huge issue](http://www.google.com/moderator/#1/e=945de&t=945de.40).
16+
The availability, depth, and quality of documentation is considered by many to be huge issue.
1717

1818
As Scala continues to mature, it continues to attract more and more interested newcomers and potential adopters who are well accustomed to easy-to-find, abundant, quality documentation (found in other languages, like Java). For many, the learning curve becomes unnecessarily steep, and [people sometimes get frustrated](http://groups.google.com/group/scala-user/browse_thread/thread/29996782cb8428cd/5ade8462ba30b177).
1919

overviews/macros/implicits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ prettyprinter for lists of prettyprintable elements and have it transparently in
107107
show(List(42)) // prints: List(42)
108108

109109
In this case, the required instance `Showable[Int]` would be generated by the materializing macro defined above.
110-
Thus, by making macros implicit, they can be used to automate the materializtion of type class instances,
110+
Thus, by making macros implicit, they can be used to automate the materialization of type class instances,
111111
while at the same time seamlessly integrating with non-macro implicits.
112112

113113
## Fundep materialization
@@ -124,7 +124,7 @@ which represents isomorphisms between types. `Iso` can be used to map case class
124124
}
125125

126126
case class Foo(i: Int, s: String, b: Boolean)
127-
def conv[C, L](c: C)(implicit iso: Iso[C, L]): L = iso.from(c)
127+
def conv[C, L](c: C)(implicit iso: Iso[C, L]): L = iso.to(c)
128128

129129
val tp = conv(Foo(23, "foo", true))
130130
tp: (Int, String, Boolean)

overviews/quasiquotes/expression-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Throw expression is used to throw a throwable:
244244

245245
## Ascription
246246

247-
Ascriptions lets users to annotate type of intermidiate expression:
247+
Ascriptions lets users to annotate type of intermediate expression:
248248

249249
scala> val ascribed = q"(1 + 1): Int"
250250
ascribed: universe.Typed = (1.$plus(1): Int)

0 commit comments

Comments
 (0)