Skip to content

Commit b49804a

Browse files
committed
fix(ktl-4438): progress tracking to the Kotlin tour
1 parent 9856dda commit b49804a

16 files changed

Lines changed: 17 additions & 17 deletions

docs/topics/tour/kotlin-tour-basic-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ fun main() {
9090

9191
Now that you know how to declare basic types, it's time to learn about [collections](kotlin-tour-collections.md).
9292

93-
## Practice {id="mark-as-completed"}
93+
## Practice {completion-point="true"}
9494

9595
### Exercise {initial-collapse-state="collapsed" collapsible="true"}
9696

docs/topics/tour/kotlin-tour-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ For more information about data classes, see [Data classes](data-classes.md).
246246

247247
The last chapter of this tour is about Kotlin's [null safety](kotlin-tour-null-safety.md).
248248

249-
## Practice {id="mark-as-completed"}
249+
## Practice {completion-point="true"}
250250

251251
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true"}
252252

docs/topics/tour/kotlin-tour-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ For more information on what you can do with collections, see [Collections](coll
418418
Now that you know about basic types and how to manage collections, it's time to explore the [control flow](kotlin-tour-control-flow.md)
419419
that you can use in your programs.
420420

421-
## Practice {id="mark-as-completed"}
421+
## Practice {completion-point="true"}
422422

423423
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true"}
424424

docs/topics/tour/kotlin-tour-control-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ For more information and examples of conditional expressions and loops, see [Con
382382

383383
Now that you know the fundamentals of Kotlin control flow, it's time to learn how to write your own [functions](kotlin-tour-functions.md).
384384

385-
## Loops practice {id="mark-as-completed"}
385+
## Loops practice {completion-point="true"}
386386

387387
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="loops-exercise-1"}
388388

docs/topics/tour/kotlin-tour-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ For more information on lambda expressions, see [Lambda expressions and anonymou
552552
553553
The next step in our tour is to learn about [classes](kotlin-tour-classes.md) in Kotlin.
554554
555-
## Lambda expressions practice {id="mark-as-completed"}
555+
## Lambda expressions practice {completion-point="true"}
556556
557557
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="lambdas-exercise-1"}
558558

docs/topics/tour/kotlin-tour-hello-world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ For more information, see [String templates](strings.md#string-templates).
9696
You will notice that there aren't any types declared for variables. Kotlin has inferred the type itself: `Int`. This tour
9797
explains the different Kotlin basic types and how to declare them in the [next chapter](kotlin-tour-basic-types.md).
9898

99-
## Practice {id="mark-as-completed"}
99+
## Practice {completion-point="true"}
100100

101101
### Exercise {initial-collapse-state="collapsed" collapsible="true"}
102102

@@ -124,7 +124,7 @@ fun main() {
124124

125125
<seealso></seealso>
126126

127-
<list columns="2" id="tour-nav">
127+
<list id="tour-nav">
128128
<li>
129129
<a as="button" href="kotlin-tour-basic-types.md" mode="classic" icon="arrow-right" icon-position="right">Next step</a>
130130
</li>

docs/topics/tour/kotlin-tour-intermediate-classes-interfaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ you don't have to add new lines of code for every inherited member function.
440440

441441
For more information, see [Delegation](delegation.md).
442442

443-
## Practice {id="mark-as-completed"}
443+
## Practice {completion-point="true"}
444444

445445
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="classes-interfaces-exercise-1"}
446446

docs/topics/tour/kotlin-tour-intermediate-extension-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ to help you work with strings.
108108

109109
For more information about extension functions, see [Extensions](extensions.md).
110110

111-
## Practice {id="mark-as-completed"}
111+
## Practice {completion-point="true"}
112112

113113
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="extension-functions-exercise-1"}
114114

docs/topics/tour/kotlin-tour-intermediate-lambdas-receiver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ standard library.
160160
>
161161
{style="tip"}
162162

163-
## Practice {id="mark-as-completed"}
163+
## Practice {completion-point="true"}
164164

165165
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="lambda-receivers-exercise-1"}
166166

docs/topics/tour/kotlin-tour-intermediate-libraries-and-apis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ fun main() {
165165

166166
This is the easiest way to opt in, but there are other ways. To learn more, see [Opt-in requirements](opt-in-requirements.md).
167167

168-
## Practice {id="mark-as-completed"}
168+
## Practice {completion-point="true"}
169169

170170
### Exercise 1 {initial-collapse-state="collapsed" collapsible="true" id="libraries-exercise-1"}
171171

0 commit comments

Comments
 (0)