From 03cd0a40a55735cea3ecf02272465712e9ff4ac4 Mon Sep 17 00:00:00 2001 From: Sainath Singineedi <44405294+sainad2222@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:39:51 +0530 Subject: [PATCH] fix: typos in validate proto file --- prost-validate-types/proto/validate/validate.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/prost-validate-types/proto/validate/validate.proto b/prost-validate-types/proto/validate/validate.proto index 4195ecf..6b65ce3 100755 --- a/prost-validate-types/proto/validate/validate.proto +++ b/prost-validate-types/proto/validate/validate.proto @@ -535,7 +535,7 @@ message StringRules { // at a maximum optional uint64 max_bytes = 5; - // Pattern specifes that this field must match against the specified + // Pattern specifies that this field must match against the specified // regular expression (RE2 syntax). The included expression should elide // any delimiters. optional string pattern = 6; @@ -647,7 +647,7 @@ message BytesRules { // at a maximum optional uint64 max_len = 3; - // Pattern specifes that this field must match against the specified + // Pattern specifies that this field must match against the specified // regular expression (RE2 syntax). The included expression should elide // any delimiters. optional string pattern = 4; @@ -733,11 +733,11 @@ message RepeatedRules { optional uint64 max_items = 2; // Unique specifies that all elements in this field must be unique. This - // contraint is only applicable to scalar and enum types (messages are not + // constraint is only applicable to scalar and enum types (messages are not // supported). optional bool unique = 3; - // Items specifies the contraints to be applied to each item in the field. + // Items specifies the constraints to be applied to each item in the field. // Repeated message fields will still execute validation against each item // unless skip is specified here. optional FieldRules items = 4;