Skip to content

Commit 98f8ae3

Browse files
[SE-0377] Fix "missing or invalid dates" warning (#1835)
1 parent ec7dae5 commit 98f8ae3

File tree

1 file changed

+2
-17
lines changed

1 file changed

+2
-17
lines changed

proposals/0377-parameter-ownership-modifiers.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,9 @@
33
* Proposal: [SE-0377](0377-parameter-ownership-modifiers.md)
44
* Authors: [Michael Gottesman](https://github.com/gottesmm), [Joe Groff](https://github.com/jckarter)
55
* Review Manager: [Ben Cohen](https://github.com/airspeedswift)
6-
* Status: **Active Review (Oct 25 - Nov 8, 2022)**
6+
* Status: **Active Review (October 25 - November 8, 2022)**
77
* Implementation: available using the internal names `__shared` and `__owned`
8-
* Pitch v1: [https://github.com/gottesmm/swift-evolution/blob/consuming-nonconsuming-pitch-v1/proposals/000b-consuming-nonconsuming.md](https://github.com/gottesmm/swift-evolution/blob/consuming-nonconsuming-pitch-v1/proposals/000b-consuming-nonconsuming.md)
9-
10-
<!--
11-
*During the review process, add the following fields as needed:*
12-
13-
* Implementation: [apple/swift#NNNNN](https://github.com/apple/swift/pull/NNNNN) or [apple/swift-evolution-staging#NNNNN](https://github.com/apple/swift-evolution-staging/pull/NNNNN)
14-
* Decision Notes: [Rationale](https://forums.swift.org/), [Additional Commentary](https://forums.swift.org/)
15-
* Bugs: [SR-NNNN](https://bugs.swift.org/browse/SR-NNNN), [SR-MMMM](https://bugs.swift.org/browse/SR-MMMM)
16-
* Previous Revision: [1](https://github.com/apple/swift-evolution/blob/...commit-ID.../proposals/NNNN-filename.md)
17-
* Previous Proposal: [SE-XXXX](XXXX-filename.md)
18-
-->
8+
* Review: ([first pitch](https://forums.swift.org/t/pitch-formally-defining-consuming-and-nonconsuming-argument-type-modifiers/54313)) ([second pitch](https://forums.swift.org/t/borrow-and-take-parameter-ownership-modifiers/59581)) ([review](https://forums.swift.org/t/se-0377-borrow-and-take-parameter-ownership-modifiers/61020))
199

2010
## Introduction
2111

@@ -26,11 +16,6 @@ the number of ARC calls or copies needed to call a function, and provides a
2616
necessary prerequisite feature for move-only types to specify whether a function
2717
consumes a move-only value or not.
2818

29-
Pitch threads:
30-
31-
- First pitch thread: [https://forums.swift.org/t/pitch-formally-defining-consuming-and-nonconsuming-argument-type-modifiers](https://forums.swift.org/t/pitch-formally-defining-consuming-and-nonconsuming-argument-type-modifiers)
32-
- Second pitch thread: [https://forums.swift.org/t/borrow-and-take-parameter-ownership-modifiers/59581](https://forums.swift.org/t/borrow-and-take-parameter-ownership-modifiers/59581)
33-
3419
## Motivation
3520

3621
Swift uses automatic reference counting to manage the lifetimes of reference-

0 commit comments

Comments
 (0)