From c4917f2b67003d036ed6dcfb3d8311de3463ec5d Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 27 Mar 2019 16:16:59 +0100 Subject: [PATCH] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 449d7a5..f0d7c98 100644 --- a/README.md +++ b/README.md @@ -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