Skip to content

Commit e6a6226

Browse files
committed
change zh-cn files structure according to latest english version.
1 parent 83add6d commit e6a6226

16 files changed

+22
-22
lines changed

_zh-cn/overviews/scala3-book/ca-extension-methods.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: 扩展方法
33
type: section
44
description: This page demonstrates how Extension Methods work in Scala 3.
55
language: zh-cn
6-
num: 63
7-
previous-page: ca-given-imports
8-
next-page: ca-type-classes
6+
num: 59
7+
previous-page: ca-contextual-abstractions-intro
8+
next-page: ca-given-using-clauses
99

1010
partof: scala3-book
1111
overview-name: "Scala 3 — Book"

_zh-cn/overviews/scala3-book/ca-given-imports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This page demonstrates how 'given' import statements work in Scala
55
language: zh-cn
66
num: 62
77
previous-page: ca-context-bounds
8-
next-page: ca-extension-methods
8+
next-page: ca-type-classes
99

1010
partof: scala3-book
1111
overview-name: "Scala 3 — Book"

_zh-cn/overviews/scala3-book/ca-given-using-clauses.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Given 实例和 Using 语句
33
type: section
44
description: This page demonstrates how to use 'given' instances and 'using' clauses in Scala 3.
55
language: zh-cn
6-
num: 59
7-
previous-page: ca-contextual-abstractions-intro
8-
next-page: types-type-classes
6+
num: 60
7+
previous-page: ca-extension-methods
8+
next-page: ca-context-bounds
99

1010
partof: scala3-book
1111
overview-name: "Scala 3 — Book"

_zh-cn/overviews/scala3-book/ca-implicit-conversions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 隐式转换
33
type: section
44
description: This page demonstrates how to implement Implicit Conversions in Scala 3.
55
language: zh-cn
6-
num: 66
6+
num: 65
77
previous-page: ca-multiversal-equality
88
next-page: ca-summary
99

_zh-cn/overviews/scala3-book/ca-multiversal-equality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 多元相等性
33
type: section
44
description: This page demonstrates how to implement Multiversal Equality in Scala 3.
55
language: zh-cn
6-
num: 65
6+
num: 64
77
previous-page: ca-type-classes
88
next-page: ca-implicit-conversions
99

_zh-cn/overviews/scala3-book/ca-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 总结
33
type: section
44
description: This page provides a summary of the Contextual Abstractions lessons.
55
language: zh-cn
6-
num: 67
6+
num: 66
77
previous-page: ca-implicit-conversions
88
next-page: concurrency
99

_zh-cn/overviews/scala3-book/ca-type-classes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: 实现类型类
33
type: section
44
description: This page demonstrates how to create and use type classes in Scala 3.
55
language: zh-cn
6-
num: 64
7-
previous-page: ca-extension-methods
6+
num: 63
7+
previous-page: ca-given-imports
88
next-page: ca-multiversal-equality
99

1010
partof: scala3-book

_zh-cn/overviews/scala3-book/concurrency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 并发
33
type: chapter
44
description: This page discusses how Scala concurrency works, with an emphasis on Scala Futures.
55
language: zh-cn
6-
num: 68
6+
num: 67
77
previous-page: ca-summary
88
next-page: scala-tools
99

_zh-cn/overviews/scala3-book/interacting-with-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 与 Java 交互
33
type: chapter
44
description: This page demonstrates how Scala code can interact with Java, and how Java code can interact with Scala code.
55
language: zh-cn
6-
num: 72
6+
num: 71
77
previous-page: tools-worksheets
88
next-page: scala-for-java-devs
99

_zh-cn/overviews/scala3-book/scala-for-java-devs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 向 Java 开发者介绍Scala
33
type: chapter
44
description: This page is for Java developers who are interested in learning about Scala 3.
55
language: zh-cn
6-
num: 73
6+
num: 72
77
previous-page: interacting-with-java
88
next-page: scala-for-javascript-devs
99

_zh-cn/overviews/scala3-book/scala-for-javascript-devs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Scala for JavaScript Developers
33
type: chapter
44
description: This chapter provides an introduction to Scala 3 for JavaScript developers
55
language: zh-cn
6-
num: 74
6+
num: 73
77
previous-page: scala-for-java-devs
88
next-page: scala-for-python-devs
99

_zh-cn/overviews/scala3-book/scala-for-python-devs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Scala for Python Developers
33
type: chapter
44
description: This page is for Python developers who are interested in learning about Scala 3.
55
language: zh-cn
6-
num: 75
6+
num: 74
77
previous-page: scala-for-javascript-devs
8-
next-page:
8+
next-page: where-next
99

1010
partof: scala3-book
1111
overview-name: "Scala 3 — Book"

_zh-cn/overviews/scala3-book/scala-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Scala 工具
33
type: chapter
44
description: This chapter looks at two commonly-used Scala tools, sbt and ScalaTest.
55
language: zh-cn
6-
num: 69
6+
num: 68
77
previous-page: concurrency
88
next-page: tools-sbt
99

_zh-cn/overviews/scala3-book/tools-sbt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 使用 sbt 构建和测试 Scala 项目
33
type: section
44
description: This section looks at a commonly-used build tool, sbt, and a testing library, ScalaTest.
55
language: zh-cn
6-
num: 70
6+
num: 69
77
previous-page: scala-tools
88
next-page: tools-worksheets
99

_zh-cn/overviews/scala3-book/tools-worksheets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: worksheet
33
type: section
44
description: This section looks at worksheets, an alternative to Scala projects.
55
language: zh-cn
6-
num: 71
6+
num: 70
77
previous-page: tools-sbt
88
next-page: interacting-with-java
99

_zh-cn/overviews/scala3-book/where-next.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 下一步去哪
33
type: chapter
44
description: Where to go next after reading the Scala Book
55
language: zh-cn
6-
num: 76
6+
num: 75
77
previous-page: scala-for-python-devs
88
next-page:
99

0 commit comments

Comments
 (0)