Skip to content
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.

improve/fix some minors in the README.md #67

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)

Expand All @@ -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

Expand Down Expand Up @@ -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:

Expand Down
Loading