File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,10 @@ extension BidirectionalCollection where SubSequence == BidirectionalSlice<Self>
205
205
extension BidirectionalCollection where SubSequence == Self {
206
206
/// Removes and returns the last element of the collection.
207
207
///
208
- /// popLast() should generally be preferred over removeLast()
208
+ /// ` popLast()` should generally be preferred over ` removeLast()`
209
209
/// since it is safer to use.
210
210
///
211
- /// You should only opt for removeLast() if you are certain the collection
211
+ /// You should only opt for ` removeLast()` if you are certain the collection
212
212
/// is not empty and performance is an issue.
213
213
///
214
214
/// - Returns: The last element of the collection if the collection has one
@@ -228,7 +228,7 @@ extension BidirectionalCollection where SubSequence == Self {
228
228
/// You should only use this if you are certain the collection
229
229
/// is not empty and performance is an issue.
230
230
///
231
- /// Otherwise opt for popLast() since it is safer.
231
+ /// Otherwise opt for ` popLast()` since it is safer.
232
232
///
233
233
/// - Returns: The last element of the collection.
234
234
///
You can’t perform that action at this time.
0 commit comments