From a24de7872c7081ea5e8f1fab8568f2274daf6a05 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Mon, 28 Apr 2025 19:16:26 -0400 Subject: [PATCH] fix typo --- lists.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lists.scad b/lists.scad index 2c0a6c3..f8be75a 100644 --- a/lists.scad +++ b/lists.scad @@ -501,7 +501,7 @@ function reverse(list) = // Description: // Rotates the contents of a list by `n` positions left, so that list[n] becomes the first entry of the list. // If `n` is negative, then the rotation is `abs(n)` positions to the right. -// If `list` is a string, then a string is returned with the characters rotates within the string. +// If `list` is a string, then a string is returned with the characters rotated within the string. // Arguments: // list = The list to rotate. // n = The number of positions to rotate by. If negative, rotated to the right. Positive rotates to the left. Default: 1