summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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);