You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to update the utils.ToTitle method added in #39 to use the new functionality in go version 1.18. The problem with the new methodology is that, given an input of:
collection.spec.name
It would return:
Collection.spec.name
The old methodology (the expected methodology) capitalizes the first character after the punctuation. Until we can solve this, we still need to use the old methodology. The expected outcome of utils.ToTitle is:
collection.Spec.Name
The text was updated successfully, but these errors were encountered:
Need to update the
utils.ToTitle
method added in #39 to use the new functionality in go version 1.18. The problem with the new methodology is that, given an input of:It would return:
The old methodology (the expected methodology) capitalizes the first character after the punctuation. Until we can solve this, we still need to use the old methodology. The expected outcome of
utils.ToTitle
is:The text was updated successfully, but these errors were encountered: