Update readme

This commit is contained in:
Sebastian Schmidt 2019-03-27 16:16:59 +01:00
parent 8a49bf9c11
commit c4917f2b67

View File

@ -244,10 +244,10 @@ Functions have a precedence of 190.
| `true` | no | Expression is interpreted as `Value::Bool` |
| `.34` | no | Expression is interpreted as `Value::Float` |
### [serde](https://serde.rs)
### [Serde](https://serde.rs)
This crate implements `serde::de::Deserialize` for its type `Node` that represents a parsed expression tree.
The implementation expects a `string` as input.
The implementation expects a [serde `string`](https://serde.rs/data-model.html) as input.
Example parsing with [ron format](docs.rs/ron):
```rust