From f4776ac441289c7e2b00c80d2210dacccc97ec06 Mon Sep 17 00:00:00 2001 From: Brooklin Myers Date: Tue, 5 Dec 2023 13:04:29 -0500 Subject: [PATCH] Update guides/notebooks/swiftui-views.livemd Co-authored-by: Carson Katri --- guides/notebooks/swiftui-views.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/notebooks/swiftui-views.livemd b/guides/notebooks/swiftui-views.livemd index 4d3b88f4..eb668376 100644 --- a/guides/notebooks/swiftui-views.livemd +++ b/guides/notebooks/swiftui-views.livemd @@ -698,7 +698,7 @@ import KinoLiveViewNative.Livebook, only: [] A Button is a clickable SwiftUI View. -The label of a button can be any view. such as a [Text](https://developer.apple.com/documentation/swiftui/text) element for text-only buttons or [Label](https://developer.apple.com/documentation/swiftui/label) element for buttons with icons. +The label of a button can be any view, such as a [Text](https://developer.apple.com/documentation/swiftui/text) view for text-only buttons or a [Label](https://developer.apple.com/documentation/swiftui/label) view for buttons with icons. Evaluate the example below to see the SwiftUI [Button](https://developer.apple.com/documentation/swiftui/button) element.