From 51b5d97fd0ee883c6de39d1762bc94432bae5c22 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Fri, 8 Nov 2024 08:24:48 -0500 Subject: [PATCH] Fix typo in README Signed-off-by: Stefan VanBuren --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0b1541..3ae4ed5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ `connectrpc.com/validate` provides a [Connect][connect-go] interceptor that takes the tedium out of data validation. Rather than hand-writing repetitive -documentation and code — verifing that `User.email` is valid, or that +documentation and code — verifying that `User.email` is valid, or that `User.age` falls within reasonable bounds — you can instead encode those constraints into your Protobuf schemas and automatically enforce them at runtime. @@ -94,7 +94,7 @@ func main() { if err != nil { log.Fatal(err) } - + mux := http.NewServeMux() mux.Handle(userv1connect.NewUserServiceHandler( &userv1connect.UnimplementedUserServiceHandler{},