Skip to content

Commit e8e1e9b

Browse files
authored
Merge pull request kubernetes#75119 from sungjunyoung/fix-typo
Fix typo, old link for contributors
2 parents cee320a + 6cc4513 commit e8e1e9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
44
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:
5-
https://git.k8s.io/community/contributors/devel/release.md#issue-kind-label
5+
https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label
66
3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/testing.md
77
4. If you want *faster* PR reviews, read how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews
88
5. Follow the instructions for writing a release note: https://git.k8s.io/community/contributors/guide/release-notes.md

pkg/util/mount/mount_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func (mounter *Mounter) IsMountPointMatch(mp MountPoint, dir string) bool {
228228
// IsLikelyNotMountPoint determines if a directory is not a mountpoint.
229229
// It is fast but not necessarily ALWAYS correct. If the path is in fact
230230
// a bind mount from one part of a mount to another it will not be detected.
231-
// mkdir /tmp/a /tmp/b; mount --bin /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b")
231+
// mkdir /tmp/a /tmp/b; mount --bind /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b")
232232
// will return true. When in fact /tmp/b is a mount point. If this situation
233233
// if of interest to you, don't use this function...
234234
func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) {

0 commit comments

Comments
 (0)