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