From 099e682b9d22492eed49b1a72f78a8eea6a131d3 Mon Sep 17 00:00:00 2001 From: Michael Watzko Date: Fri, 21 Mar 2025 15:49:51 +0100 Subject: [PATCH] Fix format in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 49c45cc..eef7064 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,11 @@ use embedded_nal::UdpClientStack; let mut spi = Mock; let mut device = w5500::UninitializedDevice::new(w5500::bus::FourWire::new(spi)) - .initialize_manual( - w5500::MacAddress::new(0, 1, 2, 3, 4, 5), - Ipv4Addr::new(192, 168, 86, 79), - w5500::Mode::default() - ).unwrap(); + .initialize_manual( + w5500::MacAddress::new(0, 1, 2, 3, 4, 5), + Ipv4Addr::new(192, 168, 86, 79), + w5500::Mode::default() + ).unwrap(); // Allocate a UDP socket to send data with let mut socket = device.socket().unwrap();