summaryrefslogtreecommitdiff
path: root/spec/03-types.md
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-04-10 11:10:13 -0500
committerGitHub <noreply@github.com>2017-04-10 11:10:13 -0500
commit2ba0530218daa170df5f1d25f7b39ab8cb8d0cf7 (patch)
tree27882766df67589849020c88dfcea69a10928e0b /spec/03-types.md
parentf9514bb3ec70e63fa6a1ac65dd9d4e34a30529fe (diff)
parentb9f5211ffd0d097d4caffc40ced8d280e632f460 (diff)
downloadscala-2ba0530218daa170df5f1d25f7b39ab8cb8d0cf7.tar.gz
scala-2ba0530218daa170df5f1d25f7b39ab8cb8d0cf7.tar.bz2
scala-2ba0530218daa170df5f1d25f7b39ab8cb8d0cf7.zip
Merge pull request #5801 from janekdb/topic/2.12/spec-trailing-punctuation
Consistify trailing punctuation in spec
Diffstat (limited to 'spec/03-types.md')
-rw-r--r--spec/03-types.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/03-types.md b/spec/03-types.md
index d2f41daabf..a3167646ca 100644
--- a/spec/03-types.md
+++ b/spec/03-types.md
@@ -507,7 +507,7 @@ Assume the class definitions
```scala
class Ref[T]
-abstract class Outer { type T } .
+abstract class Outer { type T }
```
Here are some examples of existential types:
@@ -530,7 +530,7 @@ Ref[_ <: java.lang.Number]
The type `List[List[_]]` is equivalent to the existential type
```scala
-List[List[t] forSome { type t }] .
+List[List[t] forSome { type t }]
```
###### Example