diff --git a/content/swift/concepts/tuples/tuples.md b/content/swift/concepts/tuples/tuples.md index 65aa2ec39c0..eb4582471ab 100644 --- a/content/swift/concepts/tuples/tuples.md +++ b/content/swift/concepts/tuples/tuples.md @@ -24,7 +24,7 @@ CatalogContent: var myTuple = (value1, value2, ...) ``` -> **Note:** Names should be in camelCase. +> **Note:** Variable names and property names in Swift should follow the [API Design Guidelines](https://www.swift.org/documentation/api-design-guidelines/) and be in lowerCamelCase. ## Accessing and Changing Values