From eb4fac99bafc81659d836c1ef269e24bc7791fe0 Mon Sep 17 00:00:00 2001 From: Laurent Pelecq Date: Thu, 17 Mar 2022 21:32:32 +0100 Subject: [PATCH] Fix readme example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b928714..7f2a02f 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Example ```rust use ssip_client::{FifoBuilder, ClientName}; -let mut client = FifoBuilder::new().build()?; +let mut client = fifo::Builder::new().build()?; client .set_client_name(ClientName::new("joe", "hello"))? .check_client_name_set()?;