From 7337a6b85cb7a18ab01d4f1dec2e668914f3865c Mon Sep 17 00:00:00 2001 From: zyoshoka <107108195+zyoshoka@users.noreply.github.com> Date: Tue, 5 Sep 2023 18:34:47 +0900 Subject: [PATCH] fix: typo in README.md (#2068) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad6a9fa92..07ff2b7a4 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Let's dissect what's going on: write a hashtag followed by an expression. We define two variables and a recursive function to compute the n-th fibonacci number. Then, we display the results in a center-aligned table. The table function takes its cells - row-by-row. Therefore, we first pass the formulas `$F_1$` to `$F_10$` and then + row-by-row. Therefore, we first pass the formulas `$F_1$` to `$F_8$` and then the computed fibonacci numbers. We apply the spreading operator (`..`) to both because they are arrays and we want to pass the arrays' items as individual arguments.