Skip to content

Commit 0a6078a

Browse files
authored
Documentation adjustments
1 parent c53ddcf commit 0a6078a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

listvalidator/no_null_values.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var _ function.ListParameterValidator = noNullValuesValidator{}
1616
type noNullValuesValidator struct{}
1717

1818
func (v noNullValuesValidator) Description(_ context.Context) string {
19-
return "null values are not permitted"
19+
return "All values in the list must be configured"
2020
}
2121

2222
func (v noNullValuesValidator) MarkdownDescription(ctx context.Context) string {

mapvalidator/no_null_values.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var _ function.MapParameterValidator = noNullValuesValidator{}
1616
type noNullValuesValidator struct{}
1717

1818
func (v noNullValuesValidator) Description(_ context.Context) string {
19-
return "null values are not permitted"
19+
return "All values in the map must be configured"
2020
}
2121

2222
func (v noNullValuesValidator) MarkdownDescription(ctx context.Context) string {

setvalidator/no_null_values.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var _ function.SetParameterValidator = noNullValuesValidator{}
1616
type noNullValuesValidator struct{}
1717

1818
func (v noNullValuesValidator) Description(_ context.Context) string {
19-
return "null values are not permitted"
19+
return "All values in the set must be configured"
2020
}
2121

2222
func (v noNullValuesValidator) MarkdownDescription(ctx context.Context) string {

0 commit comments

Comments
 (0)