This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve/fix some minors in the README.md
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ There are probably some issues to be taken care of, but the library should work | |
If you like to help out and would like to discuss any API changes, please [contact me]([email protected]) or create an issue. | ||
|
||
Initially, the goal was to port the JavaScript [ical.js](https://github.com/mozilla-comm/ical.js) library. | ||
Many code/algorithms were taken from it at first; but in order to but more “Rusty”, a complete rewrite was made. | ||
Many code/algorithms were taken from it at first; but in order to be more “Rusty”, a complete rewrite was made. | ||
|
||
## [Documentation](https://peltoche.github.io/ical-rs/ical/) | ||
|
||
|
@@ -21,9 +21,14 @@ Put this in your `Cargo.toml`: | |
|
||
```toml | ||
[dependencies] | ||
ical = "0.10" | ||
ical = "0.11" | ||
``` | ||
|
||
Or just run: | ||
|
||
```shell | ||
cargo add ical | ||
``` | ||
|
||
## Overview | ||
|
||
|
@@ -105,7 +110,7 @@ Parse the result of `LineReader` into three parts: | |
- The param value is untouched. | ||
- The property value is untouched. | ||
|
||
It work for both the vCard and iCal formats. | ||
It works for both the vCard and iCal formats. | ||
|
||
#### Example: | ||
|
||
|