Merge pull request #47699 from supereagle/fix-typos
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. fix typos: remove duplicated word in comments **What this PR does / why we need it**: Remove the duplicated word `the` in comments **Which issue this PR fixes** : fixes # **Special notes for your reviewer**: ```release-note NONE ``` Kubernetes-commit: 1d8f1e268f18e278b93b3ba06ca3c73604bfdb77
This commit is contained in:
		
						commit
						300ee26646
					
				
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							|  | @ -67,7 +67,7 @@ import ( | |||
| ) | ||||
| 
 | ||||
| const ( | ||||
| 	// DefaultLegacyAPIPrefix is where the the legacy APIs will be located.
 | ||||
| 	// DefaultLegacyAPIPrefix is where the legacy APIs will be located.
 | ||||
| 	DefaultLegacyAPIPrefix = "/api" | ||||
| 
 | ||||
| 	// APIGroupPrefix is where non-legacy API group will be located.
 | ||||
|  |  | |||
|  | @ -62,7 +62,7 @@ type APIServerHandler struct { | |||
| 	// which we don't fit into and it still muddies up swagger.  Trying to switch the webservices into a route doesn't work because the
 | ||||
| 	//  containing webservice faces all the same problems listed above.
 | ||||
| 	// This leads to the crazy thing done here.  Our mux does what we need, so we'll place it in front of gorestful.  It will introspect to
 | ||||
| 	// decide if the the route is likely to be handled by goresful and route there if needed.  Otherwise, it goes to PostGoRestful mux in
 | ||||
| 	// decide if the route is likely to be handled by goresful and route there if needed.  Otherwise, it goes to PostGoRestful mux in
 | ||||
| 	// order to handle "normal" paths and delegation. Hopefully no API consumers will ever have to deal with this level of detail.  I think
 | ||||
| 	// we should consider completely removing gorestful.
 | ||||
| 	// Other servers should only use this opaquely to delegate to an API server.
 | ||||
|  |  | |||
|  | @ -27,7 +27,7 @@ import ( | |||
| ) | ||||
| 
 | ||||
| // secretbox implements at rest encryption of the provided values given a 32 byte secret key.
 | ||||
| // Uses a standard 24 byte nonce (placed at the the beginning of the cipher text) generated
 | ||||
| // Uses a standard 24 byte nonce (placed at the beginning of the cipher text) generated
 | ||||
| // from crypto/rand. Does not perform authentication of the data at rest.
 | ||||
| type secretboxTransformer struct { | ||||
| 	key [32]byte | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue