diff --git a/docs/proposals/introducing_relaxed_data_binding.md b/docs/proposals/introducing_relaxed_data_binding.md index a0f154c9b..da5bafc4e 100644 --- a/docs/proposals/introducing_relaxed_data_binding.md +++ b/docs/proposals/introducing_relaxed_data_binding.md @@ -82,8 +82,8 @@ The approach involves adding a new field, `laxDataBinding`, to the `CommonClient ```ballerina public type CommonClientConfiguration record {| - boolean laxDataBinding = false; - // Other fields + boolean laxDataBinding = false; + // Other fields |}; ``` @@ -92,7 +92,7 @@ We can configure the relaxed data binding in the service level by improving the ```ballerina public type HttpServiceConfig record {| - boolean laxDataBinding = false; - // Other fields + boolean laxDataBinding = false; + // Other fields |}; ```