Skip to content

Commit 484b2a9

Browse files
syntax for meta descriptions (#4987)
1 parent 1ba93dc commit 484b2a9

12 files changed

+26
-12
lines changed

docs/topics/faq.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: FAQ)
2-
[//]: # (description: Kotlin is a concise multiplatform programming language developed by JetBrains.)
2+
3+
<web-summary>Kotlin is a concise multiplatform programming language developed by JetBrains.</web-summary>
34

45
### What is Kotlin?
56

docs/topics/jvm/java-to-kotlin-collections-guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Collections in Java and Kotlin)
2-
[//]: # (description: Learn how to migrate from Java collections to Kotlin collections. This guide covers such data structures as Kotlin and Java Lists, ArrayLists, Maps, Sets, and others.)
2+
3+
<web-summary>Learn how to migrate from Java collections to Kotlin collections. This guide covers such data structures as Kotlin and Java Lists, ArrayLists, Maps, Sets, and others.</web-summary>
34

45
_Collections_ are groups of a variable number of items (possibly zero) that are significant to the problem being solved and are commonly operated on.
56
This guide explains and compares collection concepts and operations in Java and Kotlin.

docs/topics/jvm/java-to-kotlin-idioms-strings.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[//]: # (title: Strings in Java and Kotlin)
2-
[//]: # (description: Learn how to migrate from Java String to Kotlin String. This guide covers Java StringBuilder, string concatenation and splitting strings, multiline strings, streams, and other topics.)
2+
3+
<web-summary>Learn how to migrate from Java String to Kotlin String. This guide covers Java StringBuilder,
4+
string concatenation and splitting strings, multiline strings, streams, and other topics.</web-summary>
35

46
This guide contains examples of how to perform typical tasks with strings in Java and Kotlin.
57
It will help you migrate from Java to Kotlin and write your code in the authentically Kotlin way.

docs/topics/jvm/java-to-kotlin-nullability-guide.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[//]: # (title: Nullability in Java and Kotlin)
2-
[//]: # (description: Learn how to migrate nullable constructions from Java to Kotlin. This guide covers support for nullable types in Kotlin, how Kotlin treats nullable annotations from Java, and more.)
2+
3+
<web-summary>Learn how to migrate nullable constructions from Java to Kotlin. This guide covers support for nullable types in Kotlin,
4+
how Kotlin treats nullable annotations from Java, and more.</web-summary>
35

46
_Nullability_ is the ability of a variable to hold a `null` value.
57
When a variable contains `null`, an attempt to dereference the variable leads to a `NullPointerException`.

docs/topics/jvm/jvm-create-project-with-spring-boot.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Create a Spring Boot project with Kotlin)
2-
[//]: # (description: Create a Spring Boot application with Kotlin using IntelliJ IDEA.)
2+
3+
<web-summary>Create a Spring Boot application with Kotlin using IntelliJ IDEA.</web-summary>
34

45
<tldr>
56
<p>This is the first part of the <strong>Get started with Spring Boot and Kotlin</strong> tutorial:</p><br/>

docs/topics/jvm/jvm-get-started-spring-boot.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Get started with Spring Boot and Kotlin)
2-
[//]: # (description: Get started with Spring Boot and Kotlin. Create a Spring Boot application with Kotlin.)
2+
3+
<web-summary>Get started with Spring Boot and Kotlin. Create a Spring Boot application with Kotlin.</web-summary>
34

45
Get started with Spring Boot and Kotlin by completing this tutorial: it walks you through the process of creating a simple
56
application with Spring Boot and adding a database to store the information.

docs/topics/jvm/jvm-spring-boot-add-data-class.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Add a data class to Spring Boot project)
2-
[//]: # (description: Add a Kotlin data class to Spring Boot project.)
2+
3+
<web-summary>Add a Kotlin data class to Spring Boot project.</web-summary>
34

45
<tldr>
56
<p>This is the second part of the <strong>Getting started with Spring Boot and Kotlin</strong> tutorial. Before proceeding, make sure you've completed previous steps:</p><br/>

docs/topics/jvm/jvm-spring-boot-add-db-support.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Add database support for Spring Boot project)
2-
[//]: # (description: Add a database support for Sprint Boot project written in Kotlin using JDBC template.)
2+
3+
<web-summary>Add a database support for Sprint Boot project written in Kotlin using JDBC template.</web-summary>
34

45
<tldr>
56
<p>This is the third part of the <strong>Getting started with Spring Boot and Kotlin</strong> tutorial. Before proceeding, make sure you've completed previous steps:</p><br/>

docs/topics/jvm/jvm-spring-boot-using-crudrepository.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: Use Spring Data CrudRepository for database access)
2-
[//]: # (description: Work with Spring Data interface in a Spring Boot project written in Kotlin.)
2+
3+
<web-summary>Work with Spring Data interface in a Spring Boot project written in Kotlin.</web-summary>
34

45
<tldr>
56
<p>This is the final part of the <strong>Getting started with Spring Boot and Kotlin</strong> tutorial. Before proceeding, make sure you've completed previous steps:</p><br/>

docs/topics/kotlin-ide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[//]: # (title: IDEs for Kotlin development)
2-
[//]: # (description: JetBrains provides official Kotlin IDE support for IntelliJ IDEA and Android Studio.)
2+
3+
<web-summary>JetBrains provides official Kotlin IDE support for IntelliJ IDEA and Android Studio.</web-summary>
34

45
JetBrains provides the official Kotlin support for the following IDEs and code editors:
56
[IntelliJ IDEA](#intellij-idea) and [Android Studio](#android-studio).

0 commit comments

Comments
 (0)