From f4289cd302b45e34f1cfb87d0d14434bf51f1705 Mon Sep 17 00:00:00 2001 From: Makhnev Petr <51853996+i582@users.noreply.github.com> Date: Tue, 24 Jan 2023 02:16:01 +0400 Subject: [PATCH] docs: expand empty tags (#17092) --- doc/docs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/docs.md b/doc/docs.md index e99a08b23f..0ea07706ea 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -839,7 +839,7 @@ nums[1] = 5 println(nums) // `[1, 5, 3]` ``` - + An element can be appended to the end of an array using the push operator `<<`. It can also append an entire array. @@ -2133,7 +2133,7 @@ This example will not compile, since the field `n` isn't explicitly initialized: _ = Foo{} ``` - + ### Short struct literal syntax @@ -2871,7 +2871,7 @@ println(User{ name: 'Bob', age: 20 }) // "User{name:'Bob', age:20}" See also [Array methods](#array-methods). - + ### Printing custom types