Merge pull request #47509 from thirdkeyword/master

remove repetitive words
This commit is contained in:
Sebastiaan van Stijn 2024-03-06 13:52:16 +01:00 committed by GitHub
commit 4e53936f0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -254,7 +254,7 @@ type TopologyRequirement struct {
// {"region": "R1", "zone": "Z3"} // {"region": "R1", "zone": "Z3"}
// preferred = // preferred =
// {"region": "R1", "zone": "Z3"} // {"region": "R1", "zone": "Z3"}
// then the the SP SHOULD first attempt to make the provisioned volume // then the SP SHOULD first attempt to make the provisioned volume
// available from "zone" "Z3" in the "region" "R1" and fall back to // available from "zone" "Z3" in the "region" "R1" and fall back to
// "zone" "Z2" in the "region" "R1" if that is not possible. // "zone" "Z2" in the "region" "R1" if that is not possible.
// //
@ -268,7 +268,7 @@ type TopologyRequirement struct {
// preferred = // preferred =
// {"region": "R1", "zone": "Z4"}, // {"region": "R1", "zone": "Z4"},
// {"region": "R1", "zone": "Z2"} // {"region": "R1", "zone": "Z2"}
// then the the SP SHOULD first attempt to make the provisioned volume // then the SP SHOULD first attempt to make the provisioned volume
// accessible from "zone" "Z4" in the "region" "R1" and fall back to // accessible from "zone" "Z4" in the "region" "R1" and fall back to
// "zone" "Z2" in the "region" "R1" if that is not possible. If that // "zone" "Z2" in the "region" "R1" if that is not possible. If that
// is not possible, the SP may choose between either the "zone" // is not possible, the SP may choose between either the "zone"
@ -287,7 +287,7 @@ type TopologyRequirement struct {
// preferred = // preferred =
// {"region": "R1", "zone": "Z5"}, // {"region": "R1", "zone": "Z5"},
// {"region": "R1", "zone": "Z3"} // {"region": "R1", "zone": "Z3"}
// then the the SP SHOULD first attempt to make the provisioned volume // then the SP SHOULD first attempt to make the provisioned volume
// accessible from the combination of the two "zones" "Z5" and "Z3" in // accessible from the combination of the two "zones" "Z5" and "Z3" in
// the "region" "R1". If that's not possible, it should fall back to // the "region" "R1". If that's not possible, it should fall back to
// a combination of "Z5" and other possibilities from the list of // a combination of "Z5" and other possibilities from the list of

View file

@ -15,7 +15,7 @@ import (
// Join makes sure that the concatenation of path and subpath doesn't // Join makes sure that the concatenation of path and subpath doesn't
// resolve to a path outside of path and returns a path to a temporary file that is // resolve to a path outside of path and returns a path to a temporary file that is
// a bind mount to the the exact same file/directory that was validated. // a bind mount to the exact same file/directory that was validated.
// //
// After use, it is the caller's responsibility to call Close on the returned // After use, it is the caller's responsibility to call Close on the returned
// SafePath object, which will unmount the temporary file/directory // SafePath object, which will unmount the temporary file/directory