Merge pull request #957 from wackxu/patch-5

Automatic merge from submit-queue

fix bad url in how-to-doc.md
This commit is contained in:
Kubernetes Submit Queue 2017-09-01 10:38:37 -07:00 committed by GitHub
commit f421f6b290
1 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ Use inline links instead of urls at all times. When you add internal links to
`http://releases.k8s.io/HEAD/<path/to/link>`. For example, avoid using:
```
[GCE](https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started-guides/gce.md) # note that it's under docs/
[Kubefed](https://github.com/kubernetes/kubernetes/blob/master/docs/admin/kubefed.md) # note that it's under docs/
[Kubernetes package](../../pkg/) # note that it's under pkg/
http://kubernetes.io/ # external link
```
@ -64,13 +64,13 @@ http://kubernetes.io/
Instead, use:
```
[GCE](../getting-started-guides/gce.md) # note that it's under docs/
[Kubefed](../admin/kubefed.md) # note that it's under docs/
[Kubernetes package](http://releases.k8s.io/HEAD/pkg/) # note that it's under pkg/
[Kubernetes](http://kubernetes.io/) # external link
```
The above example generates the following links:
[GCE](../getting-started-guides/gce.md),
[Kubefed](../admin/kubefed.md),
[Kubernetes package](http://releases.k8s.io/HEAD/pkg/), and
[Kubernetes](http://kubernetes.io/).