Skip to content

Commit e64d1a7

Browse files
committed
omit mention of Computed in the code comment for the Required attribute
1 parent 7279487 commit e64d1a7

File tree

7 files changed

+7
-14
lines changed

7 files changed

+7
-14
lines changed

list/schema/bool_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ type BoolAttribute struct {
3939
CustomType basetypes.BoolTypable
4040

4141
// Required indicates whether the practitioner must enter a value for
42-
// this attribute or not. Required and Optional cannot both be true,
43-
// and Required and Computed cannot both be true.
42+
// this attribute or not. Required and Optional cannot both be true.
4443
Required bool
4544

4645
// Optional indicates whether the practitioner can choose to enter a value

list/schema/float32_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ type Float32Attribute struct {
4242
CustomType basetypes.Float32Typable
4343

4444
// Required indicates whether the practitioner must enter a value for
45-
// this attribute or not. Required and Optional cannot both be true,
46-
// and Required and Computed cannot both be true.
45+
// this attribute or not. Required and Optional cannot both be true.
4746
Required bool
4847

4948
// Optional indicates whether the practitioner can choose to enter a value

list/schema/float64_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ type Float64Attribute struct {
4242
CustomType basetypes.Float64Typable
4343

4444
// Required indicates whether the practitioner must enter a value for
45-
// this attribute or not. Required and Optional cannot both be true,
46-
// and Required and Computed cannot both be true.
45+
// this attribute or not. Required and Optional cannot both be true.
4746
Required bool
4847

4948
// Optional indicates whether the practitioner can choose to enter a value

list/schema/int32_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ type Int32Attribute struct {
4242
CustomType basetypes.Int32Typable
4343

4444
// Required indicates whether the practitioner must enter a value for
45-
// this attribute or not. Required and Optional cannot both be true,
46-
// and Required and Computed cannot both be true.
45+
// this attribute or not. Required and Optional cannot both be true.
4746
Required bool
4847

4948
// Optional indicates whether the practitioner can choose to enter a value

list/schema/int64_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ type Int64Attribute struct {
4242
CustomType basetypes.Int64Typable
4343

4444
// Required indicates whether the practitioner must enter a value for
45-
// this attribute or not. Required and Optional cannot both be true,
46-
// and Required and Computed cannot both be true.
45+
// this attribute or not. Required and Optional cannot both be true.
4746
Required bool
4847

4948
// Optional indicates whether the practitioner can choose to enter a value

list/schema/list_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ type ListAttribute struct {
5858
CustomType basetypes.ListTypable
5959

6060
// Required indicates whether the practitioner must enter a value for
61-
// this attribute or not. Required and Optional cannot both be true,
62-
// and Required and Computed cannot both be true.
61+
// this attribute or not. Required and Optional cannot both be true.
6362
Required bool
6463

6564
// Optional indicates whether the practitioner can choose to enter a value

list/schema/map_attribute.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ type MapAttribute struct {
6161
CustomType basetypes.MapTypable
6262

6363
// Required indicates whether the practitioner must enter a value for
64-
// this attribute or not. Required and Optional cannot both be true,
65-
// and Required and Computed cannot both be true.
64+
// this attribute or not. Required and Optional cannot both be true.
6665
Required bool
6766

6867
// Optional indicates whether the practitioner can choose to enter a value

0 commit comments

Comments
 (0)