From f9097ec397cc0db3cd13fefeec6c6304a5900cfe Mon Sep 17 00:00:00 2001 From: Sarah Haggarty Date: Tue, 25 Jul 2023 08:02:34 +0100 Subject: [PATCH] chore: add link to strings API --- docs/topics/strings.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/strings.md b/docs/topics/strings.md index 3d50ef0e3d9..cb662cf4361 100644 --- a/docs/topics/strings.md +++ b/docs/topics/strings.md @@ -1,6 +1,7 @@ [//]: # (title: Strings) -Strings in Kotlin are represented by the type `String`. Generally, a string value is a sequence of characters in double quotes (`"`): +Strings in Kotlin are represented by the type [`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/). +Generally, a string value is a sequence of characters in double quotes (`"`): ```kotlin val str = "abcd 123"