[Stdlib] Remove a / from the comment describing the ObjC runtime name for AnyKeyPath.

With three /'s, it got interpreted as documentation, which it definitely is not meant to be.
This commit is contained in:
Mike Ash
2019-03-13 13:59:53 -04:00
parent e9208f4661
commit c38f613aec

View File

@@ -26,11 +26,11 @@ internal func _abstract(
// MARK: Type-erased abstract base classes
/// A type-erased key path, from any root type to any resulting value
/// type. NOTE: older runtimes had Swift.AnyKeyPath as the ObjC name.
/// The two must coexist, so it was renamed. The old name must not be
/// used in the new runtime. _TtCs11_AnyKeyPath is the mangled name for
/// Swift._AnyKeyPath.
// A type-erased key path, from any root type to any resulting value
// type. NOTE: older runtimes had Swift.AnyKeyPath as the ObjC name.
// The two must coexist, so it was renamed. The old name must not be
// used in the new runtime. _TtCs11_AnyKeyPath is the mangled name for
// Swift._AnyKeyPath.
@_objcRuntimeName(_TtCs11_AnyKeyPath)
public class AnyKeyPath: Hashable, _AppendKeyPath {
/// The root type for this key path.