Skip to content

Commit fa1bee4

Browse files
committed
Fix typos for TimeoutConfig and getConformanceProfileForName
* Fix typo in the comment for variable TimeoutConfig.TLSRouteMustHaveCondition. * Fix typo in the comment for function getConformanceProfileForName.
1 parent 28832b6 commit fa1bee4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conformance/utils/config/timeout.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ type TimeoutConfig struct {
6060
// Max value for conformant implementation: None
6161
HTTPRouteMustHaveCondition time.Duration
6262

63-
// TLSRouteMustHaveCondition represents the maximum time for an TLSRoute to have the supplied Condition.
63+
// TLSRouteMustHaveCondition represents the maximum time for a TLSRoute to have the supplied Condition.
6464
// Max value for conformant implementation: None
6565
TLSRouteMustHaveCondition time.Duration
6666

conformance/utils/suite/experimental_profiles.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var conformanceProfileMap = map[ConformanceProfileName]ConformanceProfile{
105105
MeshConformanceProfileName: MeshConformanceProfile,
106106
}
107107

108-
// getConformanceProfileForName retrieves a known ConformanceProfile by it's simple
108+
// getConformanceProfileForName retrieves a known ConformanceProfile by its simple
109109
// human readable ConformanceProfileName.
110110
func getConformanceProfileForName(name ConformanceProfileName) (ConformanceProfile, error) {
111111
profile, ok := conformanceProfileMap[name]

0 commit comments

Comments
 (0)