Skip to content

Commit 2e6ff0c

Browse files
authored
Merge pull request #40369 from mdznr/assert_documentation_consistency
2 parents 3d6314c + 9186d99 commit 2e6ff0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/Assert.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ public func precondition(
106106
/// one of the other cases must be satisfied. To protect code from invalid
107107
/// usage in Release builds, see `preconditionFailure(_:file:line:)`.
108108
///
109-
/// * In playgrounds and -Onone builds (the default for Xcode's Debug
109+
/// * In playgrounds and `-Onone` builds (the default for Xcode's Debug
110110
/// configuration), stop program execution in a debuggable state after
111111
/// printing `message`.
112112
///
113-
/// * In -O builds, has no effect.
113+
/// * In `-O` builds, has no effect.
114114
///
115-
/// * In -Ounchecked builds, the optimizer may assume that this function is
115+
/// * In `-Ounchecked` builds, the optimizer may assume that this function is
116116
/// never called. Failure to satisfy that assumption is a serious
117117
/// programming error.
118118
///

0 commit comments

Comments
 (0)