Skip to content

Commit

Permalink
[NFC] Fix comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
keryell committed Nov 15, 2024
1 parent fe0580b commit 85e5907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/language/constant_evaluation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
namespace language::constant_evaluation {

// A very inefficient way to compute Fibonacci's series using recursion which is
// forbidden inside non constant-evaluated kernel code/
// forbidden inside non constant-evaluated kernel code.
auto constexpr f(int v) {
if (v < 2) return v;
return f(v - 1) + f(v - 2);
Expand Down

0 comments on commit 85e5907

Please sign in to comment.