In [Replacing `@Sendable` with `sending` section](https://github.com/apple/swift-migration-guide/blob/main/Guide.docc/LibraryEvolution.md#replacing-sendable-with-sending),the following example is provided: ```diff -public func takeValue(_: @Sendable @escaping () -> Void) +public func takeValue(_: sending @escaping () -> Void) ``` However, in the example under the "To resolve" part, the code is shown as: ```swift public func takeValue(_: __shared sending NotSendable) ``` It seems clearer and more consistent to use the same example: ```swift public func takeValue(_: __shared sending @escaping () -> Void) ``` Is there a specific reason for the change in the example?