summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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