From 314e266a93d435679bb0888298b6b3f31ef28b52 Mon Sep 17 00:00:00 2001 From: Jeffrey Hutchins Date: Mon, 30 Jan 2023 03:27:01 -0700 Subject: [PATCH] Fix README typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f5619b..c82309b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ pub struct Rgba { #[arbitrary(with = arbitrary_b)] pub b: u8, - // Generate `a` with a custom closure (shortuct to avoid a custom funciton) + // Generate `a` with a custom closure (shortuct to avoid a custom function) #[arbitrary(with = |u: &mut Unstructured| u.int_in_range(0..=64))] pub a: u8, }