From 09efa7e78e6fbc853a6a56af6904a00e2e6632b8 Mon Sep 17 00:00:00 2001 From: Abdulqudduus Babalola Date: Mon, 13 Mar 2023 10:59:35 +0100 Subject: [PATCH] Update README.md (#244) Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0210028e..e915726b 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ let test_struct: TestStruct = [...] test_struct.validate_args((77, 555)).is_ok(); ``` -It is also possible to pass references by using the lifetime `'v_a` not that this lifetime should only be used for the function parameters like this: +It is also possible to pass references by using the lifetime `'v_a` note that this lifetime should only be used for the function parameters like this: ```rust fn validate_value(_: &str, arg: &mut Database) -> Result<(), ValidationError> {