Fix indentation/spacing in comments to render correctly in godoc

Kubernetes-commit: 78cb3862f11225135afdf76f3424e2d7b33104c7
This commit is contained in:
Jordan Liggitt 2022-12-17 17:31:05 -05:00 committed by Kubernetes Publisher
parent 97591331ce
commit 422fe1f61e
4 changed files with 5 additions and 8 deletions

View File

@ -82,7 +82,6 @@ func (e *events) UpdateWithEventNamespace(event *v1beta1.Event) (*v1beta1.Event,
// It returns the copy of the event that the server returns, or an error. // It returns the copy of the event that the server returns, or an error.
// The namespace and name of the target event is deduced from the event. // The namespace and name of the target event is deduced from the event.
// The namespace must either match this event client's namespace, or this event client must // The namespace must either match this event client's namespace, or this event client must
//
// have been created with the "" namespace. // have been created with the "" namespace.
func (e *events) PatchWithEventNamespace(event *v1beta1.Event, data []byte) (*v1beta1.Event, error) { func (e *events) PatchWithEventNamespace(event *v1beta1.Event, data []byte) (*v1beta1.Event, error) {
if e.ns != "" && event.Namespace != e.ns { if e.ns != "" && event.Namespace != e.ns {

View File

@ -52,7 +52,6 @@ type Interface interface {
// ClientContentConfig controls how RESTClient communicates with the server. // ClientContentConfig controls how RESTClient communicates with the server.
// //
// TODO: ContentConfig will be updated to accept a Negotiator instead of a // TODO: ContentConfig will be updated to accept a Negotiator instead of a
//
// NegotiatedSerializer and NegotiatedSerializer will be removed. // NegotiatedSerializer and NegotiatedSerializer will be removed.
type ClientContentConfig struct { type ClientContentConfig struct {
// AcceptContentTypes specifies the types the client will accept and is optional. // AcceptContentTypes specifies the types the client will accept and is optional.

View File

@ -101,7 +101,6 @@ func UntilWithoutRetry(ctx context.Context, watcher watch.Interface, conditions
// It guarantees you to see all events and in the order they happened. // It guarantees you to see all events and in the order they happened.
// Due to this guarantee there is no way it can deal with 'Resource version too old error'. It will fail in this case. // Due to this guarantee there is no way it can deal with 'Resource version too old error'. It will fail in this case.
// (See `UntilWithSync` if you'd prefer to recover from all the errors including RV too old by re-listing // (See `UntilWithSync` if you'd prefer to recover from all the errors including RV too old by re-listing
//
// those items. In normal code you should care about being level driven so you'd not care about not seeing all the edges.) // those items. In normal code you should care about being level driven so you'd not care about not seeing all the edges.)
// //
// The most frequent usage for Until would be a test where you want to verify exact order of events ("edges"). // The most frequent usage for Until would be a test where you want to verify exact order of events ("edges").

View File

@ -41,8 +41,8 @@ type FakeOpenAPIServer struct {
// API server. // API server.
// //
// specsPath - Give a path to some test data organized so that each GroupVersion // specsPath - Give a path to some test data organized so that each GroupVersion
//
// has its own OpenAPI V3 JSON file. // has its own OpenAPI V3 JSON file.
//
// i.e. apps/v1beta1 is stored in <specsPath>/apps/v1beta1.json // i.e. apps/v1beta1 is stored in <specsPath>/apps/v1beta1.json
func NewFakeOpenAPIV3Server(specsPath string) (*FakeOpenAPIServer, error) { func NewFakeOpenAPIV3Server(specsPath string) (*FakeOpenAPIServer, error) {
mux := &testMux{ mux := &testMux{