From c54a59f211f17ba615ca8be8d58f77d2f28e5dbb Mon Sep 17 00:00:00 2001 From: Erinn Looney-Triggs Date: Mon, 31 Mar 2025 11:36:52 -0600 Subject: [PATCH] Typo fix in introduction.md Just a small typo. --- concepts/numbers/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/numbers/introduction.md b/concepts/numbers/introduction.md index 8a967442..785636b5 100644 --- a/concepts/numbers/introduction.md +++ b/concepts/numbers/introduction.md @@ -22,7 +22,7 @@ let plancksConstant : Double = 6.62607015e-34 // plancksConstant is a Double ## Arithmetic operators ~~~~exercism/caution -In Swift can't mix types in arithmetic operations, so you can't use any arithmetic operator on an `Int` with a `Double` or vice versa. +In Swift you can't mix types in arithmetic operations, so you can't use any arithmetic operator on an `Int` with a `Double` or vice versa. Therefore, you have to do a type conversion first. ~~~~