diff options
author | Adam Bard <github@adambard.com> | 2015-11-30 22:23:31 +0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2015-11-30 22:23:31 +0700 |
commit | c0ac40dff2b418441a9ff4647cfd3af35b3cb397 (patch) | |
tree | 392f115755671640c4a2721ffb0d44515c4517ff | |
parent | 6d63fbc7cdf0f6cf6d302769c9fe4e9fdf8a530c (diff) | |
parent | 312941c5e018bee87be524697b471061cf70b285 (diff) |
Merge pull request #2021 from bobrippling/master
[swift/en] Correct "Casting" mention in swift markdown
-rw-r--r-- | swift.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swift.html.markdown b/swift.html.markdown index 33ff8451..e6bf1621 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -46,7 +46,7 @@ let `class` = "keyword" // backticks allow keywords to be used as variable names let explicitDouble: Double = 70 let intValue = 0007 // 7 let largeIntValue = 77_000 // 77000 -let label = "some text " + String(myVariable) // Casting +let label = "some text " + String(myVariable) // String construction let piText = "Pi = \(π), Pi 2 = \(π * 2)" // String interpolation // Build Specific values |