summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFredrik Meringdal <fmeringdal@hotmail.com>2020-11-01 21:22:20 +0100
committerFredrik Meringdal <fmeringdal@hotmail.com>2020-11-01 21:22:20 +0100
commited603b788b23535b086f2a7491627e018e8dce5d (patch)
tree15bda7fde8339ff6b105305f8f1a74c937430b44 /README.md
parentf923e14ebe037c63f081ea036a9a259c5abd0935 (diff)
downloadrust_rrule-ed603b788b23535b086f2a7491627e018e8dce5d.zip
docs and removed some stuff from options
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b753437..f394759 100644
--- a/README.md
+++ b/README.md
@@ -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