summaryrefslogtreecommitdiff
path: root/pkg/util/camelcase
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-27 13:26:56 -0400
committerGitHub <noreply@github.com>2021-08-27 13:26:56 -0400
commitb21f8ea206442b93dd6ac95648b185cf03e912b7 (patch)
tree586d431dd0470ecb3a21341ffc0d59d975bb03da /pkg/util/camelcase
parent8cd2f2fb80b26dc54bbb1f43ec44df16dee8f01b (diff)
parent84694170402ff699065382ba2d2fb172c3b6c88f (diff)
downloadpodman-b21f8ea206442b93dd6ac95648b185cf03e912b7.tar.gz
podman-b21f8ea206442b93dd6ac95648b185cf03e912b7.tar.bz2
podman-b21f8ea206442b93dd6ac95648b185cf03e912b7.zip
Merge pull request #11333 from rhatdan/http-proxy
Globally replace http:// with https://
Diffstat (limited to 'pkg/util/camelcase')
-rw-r--r--pkg/util/camelcase/README.md4
-rw-r--r--pkg/util/camelcase/camelcase.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg/util/camelcase/README.md b/pkg/util/camelcase/README.md
index 105a6ae33..ab0da573a 100644
--- a/pkg/util/camelcase/README.md
+++ b/pkg/util/camelcase/README.md
@@ -1,4 +1,4 @@
-# CamelCase [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/fatih/camelcase) [![Build Status](http://img.shields.io/travis/fatih/camelcase.svg?style=flat-square)](https://travis-ci.org/fatih/camelcase)
+# CamelCase [![GoDoc](https://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/github.com/fatih/camelcase) [![Build Status](https://img.shields.io/travis/fatih/camelcase.svg?style=flat-square)](https://travis-ci.org/fatih/camelcase)
CamelCase is a Golang (Go) package to split the words of a camelcase type
string into a slice of words. It can be used to convert a camelcase word (lower
@@ -33,7 +33,7 @@ fmt.Println(splitted[0], splitted[1]) // prints: "Golang", "Package"
```
Both lower camel case and upper camel case are supported. For more info please
-check: [http://en.wikipedia.org/wiki/CamelCase](http://en.wikipedia.org/wiki/CamelCase)
+check: [https://en.wikipedia.org/wiki/CamelCase](https://en.wikipedia.org/wiki/CamelCase)
Below are some example cases:
diff --git a/pkg/util/camelcase/camelcase.go b/pkg/util/camelcase/camelcase.go
index 0a82d1005..d27ac00d6 100644
--- a/pkg/util/camelcase/camelcase.go
+++ b/pkg/util/camelcase/camelcase.go
@@ -9,7 +9,7 @@ import (
// Split splits the camelcase word and returns a list of words. It also
// supports digits. Both lower camel case and upper camel case are supported.
-// For more info please check: http://en.wikipedia.org/wiki/CamelCase
+// For more info please check: https://en.wikipedia.org/wiki/CamelCase
//
// Examples
//