Merge pull request #13986 from Sea-n/fix-md

doc: Fix Markdown code block
This commit is contained in:
Marek Siarkowicz 2022-04-25 13:01:29 +02:00 committed by GitHub
commit d849269dab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ Speed up issue management.
The `etcd` issues are listed at https://github.com/etcd-io/etcd/issues
and are identified with labels. For example, an issue that is identified
as a bug will eventually be set to label `area/bug `. New issues will
as a bug will eventually be set to label `area/bug`. New issues will
start out without any labels, but typically `etcd` maintainers and active contributors
add labels based on their findings. The detailed list of labels can be found at
https://github.com/kubernetes/kubernetes/labels

View File

@ -385,7 +385,7 @@ func withMax(maxRetries uint) retryOption {
}}
}
// WithBackoff sets the `BackoffFunc `used to control time between retries.
// WithBackoff sets the `BackoffFunc` used to control time between retries.
func withBackoff(bf backoffFunc) retryOption {
return retryOption{applyFunc: func(o *options) {
o.backoffFunc = bf