Skip to content

Commit 420f89a

Browse files
committed
completed sips
1 parent e344afc commit 420f89a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

_sips/sips/2014-06-27-42.type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: sip
33
discourse: true
44
title: SIP-23 - Literal-based singleton types
55

6-
vote-status: pending
6+
vote-status: completed
77
permalink: /sips/:title.html
88
---
99

_sips/sips/2017-02-07-make-types-behave-like-expressions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: sip
33
discourse: true
44
title: SIP-33 - Match infix & prefix types to meet expression rules
55

6-
vote-status: pending
6+
vote-status: completed
77
permalink: /sips/:title.html
88
---
99

@@ -207,10 +207,10 @@ type bad = 2 ~~ -2 //Error:(9, 20) ';' expected but integer literal found.
207207
type work_around = 2 ~~ (-2) //works for Typelevel scala, but fails in Dotty
208208
```
209209
It is not yet clear if this is an implementation issue, or if the spec should be changed to allow this as well.
210-
If this is a spec change, then the committee should approve it also.
211-
210+
If this is a spec change, then the committee should approve it also.
211+
212212
#### Star `*` infix type interaction with repeated parameters
213-
The [repeated argument symbol `*`](https://www.scala-lang.org/files/archive/spec/2.12/04-basic-declarations-and-definitions.html#repeated-parameters) may create confusion with the infix type `*`.
213+
The [repeated argument symbol `*`](https://www.scala-lang.org/files/archive/spec/2.12/04-basic-declarations-and-definitions.html#repeated-parameters) may create confusion with the infix type `*`.
214214
Please note that this feature interaction already exists within the current specification.
215215

216216
```scala

0 commit comments

Comments
 (0)