Skip to content

Commit 2f48b6e

Browse files
committed
Capitalize the initial letters of words in a title
1 parent 9576c3e commit 2f48b6e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
---
22
layout: doc-page
3-
title: "Dropped: wildcard initializer"
3+
title: "Dropped: Wildcard Initializer"
44
---
55

66
The syntax
7+
78
```scala
89
var x: A = _
910
```
11+
1012
that was used to indicate an uninitialized field, has been dropped.
11-
At its place there is a special value `uninitialized` in the `scala.compiletime` package. To get an uninitialized field, you now write
13+
At its place there is a special value `uninitialized` in the `scala.compiletime` package.
14+
To get an uninitialized field, you now write
15+
1216
```scala
1317
import scala.compiletime.uninitialized
1418

1519
var x: A = uninitialized
1620
```
17-
To enable cross-compilation, `_` is still supported, but it will be dropped in a future 3.x version.
1821

22+
To enable cross-compilation, `_` is still supported, but it will be dropped in a future 3.x version.

0 commit comments

Comments
 (0)