fix: typo in README.md (#2068)

This commit is contained in:
zyoshoka 2023-09-05 18:34:47 +09:00 committed by GitHub
parent e0e1462439
commit 7337a6b85c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ Let's dissect what's going on:
write a hashtag followed by an expression. We define two variables and a 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 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 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 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 because they are arrays and we want to pass the arrays' items as individual
arguments. arguments.