From c38f613aecaa10fdee5bf23bb65853dc366d841d Mon Sep 17 00:00:00 2001 From: Mike Ash Date: Wed, 13 Mar 2019 13:59:53 -0400 Subject: [PATCH] [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. --- stdlib/public/core/KeyPath.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stdlib/public/core/KeyPath.swift b/stdlib/public/core/KeyPath.swift index 5619acace19..3b28066a82c 100644 --- a/stdlib/public/core/KeyPath.swift +++ b/stdlib/public/core/KeyPath.swift @@ -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.