Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax error on Scala 3.3.1 #2958

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _overviews/scala3-book/scala-for-java-devs.md
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,8 @@ These interfaces and traits have concrete, implemented methods (default methods)
<br>
<br>// mix in the traits as DavidBanner
<br>// is created
<br>val hulk = new DavidBanner with Big,
<br>&nbsp; Angry, Green</code>
<br>val hulk = new DavidBanner with Big with Angry with Green
</code>
</td>
</tr>
</tbody>
Expand Down
4 changes: 2 additions & 2 deletions _zh-cn/overviews/scala3-book/scala-for-java-devs.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,8 @@ Scala不遵循JavaBeans标准,因此我们在这里展示的Java代码
<br>
<br>// mix in the traits as DavidBanner
<br>// is created
<br>val hulk = new DavidBanner with Big,
<br>&nbsp; Angry, Green</code>
<br>val hulk = new DavidBanner with Big with Angry with Green
</code>
</td>
</tr>
</tbody>
Expand Down
Loading