Fix formatting of range operators page. (#31)

Without a blank line the code block isn't rendered. Closing back ticks are needed at the end.
This commit is contained in:
Dale 2022-02-17 11:53:53 +00:00 коммит произвёл GitHub
Родитель 2b09bbfe6c
Коммит dfa3845b65
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -11,6 +11,7 @@ Much like using `<` instead of `<=`, using the half-open range operator allows y
## Examples
### Array Iteration
```swift
let oneToFive = ["one", "two", "three", "four", "five"]
let count = oneToFive.count
@ -45,6 +46,7 @@ for i in 0..<count {
//3 is three
//4 is four
//5 is five
```
## Resources
[Range Operators](https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html#ID73)