Comments spelling fixes

This commit is contained in:
Adrien Ufferte 2025-06-15 01:36:10 +02:00
parent 1218a16de5
commit a11a64fbf4
6 changed files with 7 additions and 7 deletions

View file

@ -42,7 +42,7 @@
// recursion. So: float value; int value; etc.
//
// This works by splitting up the parameter pack for each step in the recursion minus the first.
// so the the first step creates the "T value" from the first template parameter.
// so the first step creates the "T value" from the first template parameter.
// any further template arguments end up in "Rest", which we then use to instantiate a new
// tuple, but now minus the first argument. To write this all out:
//