From 35e98dbcdbe078a8ba91ea51487256a0cad9369d Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 23 Apr 2019 09:50:06 -0400 Subject: [PATCH] Update READMEs --- 0053-swift-syntax-enum-properties/README.md | 2 +- 0054-advanced-swift-syntax-enum-properties/README.md | 2 +- 0055-swift-syntax-command-line-tool/README.md | 2 +- README.md | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/0053-swift-syntax-enum-properties/README.md b/0053-swift-syntax-enum-properties/README.md index fbea12bd..793ff894 100644 --- a/0053-swift-syntax-enum-properties/README.md +++ b/0053-swift-syntax-enum-properties/README.md @@ -1,6 +1,6 @@ ## [Point-Free](https://www.pointfree.co) -> #### This directory contains code from Point-Free Episode: [Enum Properties](https://www.pointfree.co/episodes/ep53-swift-syntax-enum-properties) +> #### This directory contains code from Point-Free Episode: [Swift Syntax Enum Properties](https://www.pointfree.co/episodes/ep53-swift-syntax-enum-properties) > > We've seen how "enum properties" help close the gap between the ergonomics of accessing data on structs and enums, but defining them by hand requires a _lot_ of boilerplate. This week we join forces with Apple's Swift Syntax library to generate this boilerplate automatically! diff --git a/0054-advanced-swift-syntax-enum-properties/README.md b/0054-advanced-swift-syntax-enum-properties/README.md index 0d6e3cf2..e6a7bc8d 100644 --- a/0054-advanced-swift-syntax-enum-properties/README.md +++ b/0054-advanced-swift-syntax-enum-properties/README.md @@ -1,6 +1,6 @@ ## [Point-Free](https://www.pointfree.co) -> #### This directory contains code from Point-Free Episode: [Enum Properties](https://www.pointfree.co/episodes/ep54-advanced-swift-syntax-enum-properties) +> #### This directory contains code from Point-Free Episode: [Advanced Swift Syntax Enum Properties](https://www.pointfree.co/episodes/ep54-advanced-swift-syntax-enum-properties) > > This week we’ll put the finishing touches on our enum property code generation tool. We’ll add support for enum cases with multiple associated values and enum cases with no associated values, and we’ll add a feature that will make enums even more ergonomic to work with! diff --git a/0055-swift-syntax-command-line-tool/README.md b/0055-swift-syntax-command-line-tool/README.md index daa87834..cbf8b3f7 100644 --- a/0055-swift-syntax-command-line-tool/README.md +++ b/0055-swift-syntax-command-line-tool/README.md @@ -1,6 +1,6 @@ ## [Point-Free](https://www.pointfree.co) -> #### This directory contains code from Point-Free Episode: [Enum Properties](https://www.pointfree.co/episodes/ep55-swift-syntax-command-line-tool) +> #### This directory contains code from Point-Free Episode: [Swift Syntax Command Line Tool](https://www.pointfree.co/episodes/ep55-swift-syntax-command-line-tool) > > Today we finally extract our enum property code generator to a Swift Package Manager library and CLI tool. We’ll also do some next-level snapshot testing: not only will we snapshot-test our generated code, but we’ll leverage the Swift compiler to verify that our snapshot builds. diff --git a/README.md b/README.md index 4783d47c..8bdfebb7 100644 --- a/README.md +++ b/README.md @@ -57,3 +57,4 @@ This repository is the home of code written on episodes of 1. [Enum Properties](0052-enum-properties) 1. [Swift Syntax Enum Properties](0053-swift-syntax-enum-properties) 1. [Advanced Swift Syntax Enum Properties](0054-advanced-swift-syntax-enum-properties) +1. [Swift Syntax Command Line Tool](0055-swift-syntax-command-line-tool)