Skip to content

Commit 32b9b47

Browse files
authored
Merge pull request #2991 from tsnee/main
Fix numbering conflict in methods-main-methods.md.
2 parents 140a3ba + bb0e4de commit 32b9b47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_overviews/scala3-book/methods-main-methods.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ The Scala compiler generates a program from an `@main` method `f` as follows:
123123

124124
For instance, the `happyBirthday` method above generates additional code equivalent to the following class:
125125

126-
{% tabs method_3 %}
127-
{% tab 'Scala 3 Only' for=method_3 %}
126+
{% tabs method_4 %}
127+
{% tab 'Scala 3 Only' for=method_4 %}
128128

129129
```scala
130130
final class happyBirthday {
@@ -158,7 +158,7 @@ The previous functionality of `App`, which relied on the “magic” `DelayedIni
158158

159159
If programs need to cross-build between Scala 2 and Scala 3, it’s recommended to use an `object` with an explicit `main` method and a single `Array[String]` argument instead:
160160

161-
{% tabs method_4 %}
161+
{% tabs method_5 %}
162162
{% tab 'Scala 2 and 3' %}
163163

164164
```scala

0 commit comments

Comments
 (0)