fix(endpoint): correct function name in comment (#6122)

Signed-off-by: u-kai <76635578+u-kai@users.noreply.github.com>
This commit is contained in:
Kai Udo 2026-01-21 20:19:34 +09:00 committed by GitHub
parent 89eec8151b
commit 910dc785d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -313,7 +313,7 @@ func (e *Endpoint) GetProviderSpecificProperty(key string) (string, bool) {
return "", false
}
// GetBoolProperty returns a boolean provider-specific property value.
// GetBoolProviderSpecificProperty returns a boolean provider-specific property value.
func (e *Endpoint) GetBoolProviderSpecificProperty(key string) (bool, bool) {
prop, ok := e.GetProviderSpecificProperty(key)
if !ok {