From df8e5f3e27e9297de39eeb42774460e1541260c8 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:20:54 +0200 Subject: [PATCH] Update 'README.md' changed wording. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09c9f71..38ded78 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ It does this by providing two macros: - `sing_add_trait`, which acts as an attribute to a trait implementation and gathers the method signatures that are used by `sing_loop!`. - `sing_loop!`, which takes a trait object and serialization/deserialization functions as well as some optional parameters. It generates a loop parsing function calls coming from STDIN (or any other `BufRead` stream), evaluating them by calling the appropriate method on the object and returning them on STDOUT (or any other `Write` stream). -## Example usage +## Usage example ```rust use serde::{Serialize, Deserialize};