Skip to content

Commit 757b4e1

Browse files
Fix code in post headings
1 parent 15a7ac9 commit 757b4e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_posts/2016-03-30-swift-2.2-new-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ This syntax — affectionately called "tuple splat syntax" — is the a
160160

161161
For more information, see the [Swift Evolution proposal](https://github.com/swiftlang/swift-evolution/blob/master/proposals/0029-remove-implicit-tuple-splat.md) or read the [swift-evolution-announce post](https://lists.swift.org/pipermail/swift-evolution-announce/2016-February/000033.html) detailing the rationale.
162162

163-
### C-style `for` loops are deprecated
163+
### C-style <code>for</code> loops are deprecated
164164

165165
Even though Swift has several idiomatic loop options, C-style for loops were still part of the language and occasionally used. For example:
166166

_posts/2017-3-27-swift-3.1-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Swift 3.1 is now officially released! Swift 3.1 is a minor release that contain
1212
### Language Updates
1313
Swift 3.1 is a minor language release. It is source compatible with Swift 3.0. It contains the following language changes and updates, most of which went through the Swift [Evolution process](/contributing/#participating-in-the-swift-evolution-process):
1414

15-
#### New `Sequence` protocol members
15+
#### New <code>`Sequence`</code> protocol members
1616

1717
The `Sequence` protocol now has two new members:
1818

_posts/2023-09-28-whats-new-swift-debugging-5.9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Swift 5.9 introduced a number of new debugging features to the compiler and [LLD
1313
Here are three changes that can help with your everyday debugging workflows.
1414

1515

16-
### Faster variable inspection with `p` and `po`
16+
### Faster variable inspection with <code>p</code> and <code>po</code>
1717

1818
LLDB provides the shorthand `p` command alias to inspect variables and `po` to call the debugDescription property of objects. Originally, these were aliases for the rather heavyweight `expression` and `expression -O` commands. In Swift 5.9, the `p` and `po` command aliases have been redefined to the new [`dwim-print` command](https://reviews.llvm.org/D138315 "LLVM review").
1919

0 commit comments

Comments
 (0)