From cb05a823ed06d72f80a04f73dd151016cf8feb9a Mon Sep 17 00:00:00 2001 From: Porter Child Date: Tue, 8 Dec 2020 20:00:09 -0700 Subject: [PATCH] fix package import branch label --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a64f889..6d9e759 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ struct Dog { let name: String } -let dogKeyPaths = Reflection.allKeysPaths(for: Dog.self) +let dogKeyPaths = Reflection.allKeyPaths(for: Dog.self) let sparky = Dog(age: 128, name: "Sparky") @@ -47,7 +47,7 @@ add the following to your `Package.swift` file's dependencies: ```swift .package( url: "https://github.com/apple/swift-evolution-staging.git", - .branch("SE0000_KeyPathReflection") + .branch("reflection") ) ```