Merge pull request #107550 from AdrienUfferte/fix-spelling

Fix spelling in comments
This commit is contained in:
Rémi Verschelde 2025-06-16 01:52:48 +02:00
commit 9e1e2fdbd5
No known key found for this signature in database
GPG key ID: C3336907360768E1
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:
//