From 5dfbe7c237fd1bb8e682d7e3f6b50646dd165281 Mon Sep 17 00:00:00 2001 From: "matthias@arch" Date: Wed, 13 Dec 2023 16:32:11 +0100 Subject: [PATCH] fix RUN --- 10/README.md | 2 +- 11/README.md | 2 +- 13/README.md | 2 +- make_day_readme.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/10/README.md b/10/README.md index b9188a3..f6ca87f 100644 --- a/10/README.md +++ b/10/README.md @@ -11,6 +11,6 @@ I used lots of simple bitwise operations because I might implement this solution ```shell rustc day10.rs -./day10RUN +./day10 ``` diff --git a/11/README.md b/11/README.md index 52be051..079bef6 100644 --- a/11/README.md +++ b/11/README.md @@ -9,5 +9,5 @@ Execution time: **0,005 s** ```shell rustc day11.rs -./day11RUN +./day11 ``` diff --git a/13/README.md b/13/README.md index db46866..c83dc75 100644 --- a/13/README.md +++ b/13/README.md @@ -16,7 +16,7 @@ This approach is super fast since it has 0 heap allocations in loops and compari ```shell rustc day13.rs -./day13RUN +./day13 ``` diff --git a/make_day_readme.sh b/make_day_readme.sh index 84d1ec4..6c05f56 100755 --- a/make_day_readme.sh +++ b/make_day_readme.sh @@ -124,7 +124,7 @@ else fi if [[ -n $howto ]]; then - sed -i "s|HOWTO|$howto|" $readme + sed -i "s|HOWTORUN|$howto|" $readme fi if [[ $loc == 0 ]]; then