1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Minor text change

This commit is contained in:
Ewout Prangsma 2018-02-26 10:23:59 +01:00
parent 5bdbee623a
commit a682223205
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -196,7 +196,7 @@ func (l MemberStatusList) ContainsID(id string) bool {
}
// ElementByPodName returns the element in the given list that has the given pod name and true.
// If no such element exists, false is returned.
// If no such element exists, an empty element and false is returned.
func (l MemberStatusList) ElementByPodName(podName string) (MemberStatus, bool) {
for i, x := range l {
if x.PodName == podName {