diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-01 21:22:20 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-01 21:22:20 +0100 |
commit | ed603b788b23535b086f2a7491627e018e8dce5d (patch) | |
tree | 15bda7fde8339ff6b105305f8f1a74c937430b44 /README.md | |
parent | f923e14ebe037c63f081ea036a9a259c5abd0935 (diff) | |
download | rust_rrule-ed603b788b23535b086f2a7491627e018e8dce5d.zip |
docs and removed some stuff from options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,9 +15,9 @@ use rrule::build_rrule; let mut rrule = build_rrule("DTSTART:20120201T093000Z\nRRULE:FREQ=DAILY;COUNT=3").unwrap(); -// Get all occurrences of the rrule -let occurences = rrule.all(); -assert_eq!(occurences.len(), 3); +// Get all recurrences of the rrule +let recurrences = rrule.all(); +assert_eq!(recurrences.len(), 3); ``` # Documentation and more examples |