From f40cc648ced0f2bb63610f69508ae40373cd5316 Mon Sep 17 00:00:00 2001 From: Erjan Kalybek Date: Mon, 3 Dec 2018 09:14:03 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7d4342..519b932 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Generator functions are tagged `#[aoc_generator(dayX)]`. Because examples are worth a thousand words, lets take a look at [Year 2015, Day 2](https://adventofcode.com/2015/day/2) : -From the puzzle's description, we know that `[we] have a list of the dimensions (length l, width w, and height h) of each present`, each present on one line, representend like so: `{L}x{W}x{H}`. +From the puzzle's description, we know that `[we] have a list of the dimensions (length l, width w, and height h) of each present`, each present on one line, represented like so: `{L}x{W}x{H}`. We might want to first parse the input and extract logical `Gift` structs out of it, like: