summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-09-27 13:10:04 +0200
committerTyge Løvset <[email protected]>2022-09-27 13:10:04 +0200
commit57bd093b76083de23af1cfa40be16d166cd440fe (patch)
treeb7d2e1071fff1d820951199ad8a99137cf428902 /docs
parente433a1fc67500ab6bc03c302c01304fd45c72d0e (diff)
parentccc1b89c9b65355d10752c3ff7ec4a32cde6d15c (diff)
downloadSTC-modified-57bd093b76083de23af1cfa40be16d166cd440fe.tar.gz
STC-modified-57bd093b76083de23af1cfa40be16d166cd440fe.zip
Merge branch 'master' of github.com:tylov/STC
Diffstat (limited to 'docs')
-rw-r--r--docs/ccommon_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md
index 2c0ea4c2..40a181dc 100644
--- a/docs/ccommon_api.md
+++ b/docs/ccommon_api.md
@@ -273,7 +273,7 @@ crange_iter crange_end(crange* self);
void crange_next(crange_iter* it);
// 1. All primes less than 32:
-crange r1 = crange_from(3, 32, 2);
+crange r1 = crange_make(3, 32, 2);
printf("2"); // first prime
c_forfilter (i, crange, r1
, isPrime(*i.ref))