summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-12-12 23:23:14 +0530
committerAndinus <andinus@nand.sh>2020-12-12 23:23:14 +0530
commit02fdd4b747c70d2e2ce547150d891138b751e4a4 (patch)
treeded4a573837e5e8669dec66efd23e768feea20d3
parent3e2478468c10188bbb50fde4041f84431e5c77fe (diff)
downloadaoc-02fdd4b747c70d2e2ce547150d891138b751e4a4.tar.gz
Fix a typo
-rw-r--r--2020/day-10/README.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/2020/day-10/README.org b/2020/day-10/README.org
index 429e06f..9c95f95 100644
--- a/2020/day-10/README.org
+++ b/2020/day-10/README.org
@@ -217,7 +217,7 @@ sub MAIN (
 }
 #+END_SRC
 
-FOr part 1 we just loop over =@adapters= & note down the number of
+For part 1 we just loop over =@adapters= & note down the number of
 difference of 3's & 1's. Then we just multiply them to get the solution.
 #+BEGIN_SRC raku
 my Int ($diff_1, $diff_3);