From 7b384d647abecb4a580f779e5aaf63a537fed5a8 Mon Sep 17 00:00:00 2001 From: Jerry Ling Date: Tue, 8 Apr 2025 12:38:14 -0400 Subject: [PATCH] Clearer describe of `skip()` in readme Make it clear `skip()` mutates `s` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe9c3da..907ab0f 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ Skipping exactly `n` elements is also possible: skip(s, n, exact=true) ``` -`skip` returns `s`, so you can simply do `s = skip(SobolSeq(N))` or similar. +`skip` mutates and returns `s`, so you can simply do `s = skip(SobolSeq(lb, ub), n)` or similar. ## Example