Skip to content

Commit e1ecfa7

Browse files
authored
docs: Correct capitalization for URL (#7285)
Correct capitalization for URL
1 parent bdb3c28 commit e1ecfa7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/lib/content/configuring-npm/package-json.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ your package as it's listed in `npm search`.
7575

7676
### homepage
7777

78-
The url to the project homepage.
78+
The URL to the project homepage.
7979

8080
Example:
8181

@@ -85,7 +85,7 @@ Example:
8585

8686
### bugs
8787

88-
The url to your project's issue tracker and / or the email address to which
88+
The URL to your project's issue tracker and / or the email address to which
8989
issues should be reported. These are helpful for people who encounter
9090
issues with your package.
9191

@@ -101,10 +101,10 @@ It should look like this:
101101
```
102102

103103
You can specify either one or both values. If you want to provide only a
104-
url, you can specify the value for "bugs" as a simple string instead of an
104+
URL, you can specify the value for "bugs" as a simple string instead of an
105105
object.
106106

107-
If a url is provided, it will be used by the `npm bugs` command.
107+
If a URL is provided, it will be used by the `npm bugs` command.
108108

109109
### license
110110

@@ -511,9 +511,9 @@ Do it like this:
511511
}
512512
```
513513

514-
The URL should be a publicly available (perhaps read-only) url that can be
514+
The URL should be a publicly available (perhaps read-only) URL that can be
515515
handed directly to a VCS program without any modification. It should not
516-
be a url to an html project page that you put in your browser. It's for
516+
be a URL to an html project page that you put in your browser. It's for
517517
computers.
518518

519519
For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the
@@ -636,7 +636,7 @@ install time.
636636

637637
#### Git URLs as Dependencies
638638

639-
Git urls are of the form:
639+
Git URLs are of the form:
640640

641641
```bash
642642
<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish> | #semver:<semver>]
@@ -683,7 +683,7 @@ will be rebuilt for every installation.
683683

684684
#### GitHub URLs
685685

686-
As of version 1.1.65, you can refer to GitHub urls as just "foo":
686+
As of version 1.1.65, you can refer to GitHub URLs as just "foo":
687687
"user/foo-project". Just as with git URLs, a `commit-ish` suffix can be
688688
included. For example:
689689

@@ -889,7 +889,7 @@ none.
889889
If a dependency can be used, but you would like npm to proceed if it cannot
890890
be found or fails to install, then you may put it in the
891891
`optionalDependencies` object. This is a map of package name to version or
892-
url, just like the `dependencies` object. The difference is that build
892+
URL, just like the `dependencies` object. The difference is that build
893893
failures do not cause installation to fail. Running `npm install
894894
--omit=optional` will prevent these dependencies from being installed.
895895

0 commit comments

Comments
 (0)