Skip to content

Commit a7793a7

Browse files
meyeringgitster
authored andcommitted
correct spelling: an URL -> a URL
Signed-off-by: Jim Meyering <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 59012e2 commit a7793a7

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Documentation/git-submodule.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ commit for each submodule.
190190
sync::
191191
Synchronizes submodules' remote URL configuration setting
192192
to the value specified in .gitmodules. It will only affect those
193-
submodules which already have an url entry in .git/config (that is the
193+
submodules which already have a URL entry in .git/config (that is the
194194
case when they are initialized or freshly added). This is useful when
195195
submodule URLs change upstream and you need to update your local
196196
repositories accordingly.

Documentation/gitmodules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ submodule.<name>.path::
2828
be unique within the .gitmodules file.
2929

3030
submodule.<name>.url::
31-
Defines an url from where the submodule repository can be cloned.
31+
Defines a URL from which the submodule repository can be cloned.
3232
This may be either an absolute URL ready to be passed to
3333
linkgit:git-clone[1] or (if it begins with ./ or ../) a location
3434
relative to the superproject's origin repository.
@@ -84,7 +84,7 @@ Consider the following .gitmodules file:
8484

8585
This defines two submodules, `libfoo` and `libbar`. These are expected to
8686
be checked out in the paths 'include/foo' and 'include/bar', and for both
87-
submodules an url is specified which can be used for cloning the submodules.
87+
submodules a URL is specified which can be used for cloning the submodules.
8888

8989
SEE ALSO
9090
--------

Documentation/howto/using-merge-subtree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ What you want is the 'subtree' merge strategy, which helps you in such a
2525
situation.
2626

2727
In this example, let's say you have the repository at `/path/to/B` (but
28-
it can be an URL as well, if you want). You want to merge the 'master'
28+
it can be a URL as well, if you want). You want to merge the 'master'
2929
branch of that repository to the `dir-B` subdirectory in your current
3030
branch.
3131

contrib/svn-fe/svn-fe.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ as committer, where 'user' is the value of the `svn:author` property
5151
and 'UUID' the repository's identifier.
5252

5353
To support incremental imports, 'svn-fe' puts a `git-svn-id` line at
54-
the end of each commit log message if passed an url on the command
54+
the end of each commit log message if passed a URL on the command
5555
line. This line has the form `git-svn-id: URL@REVNO UUID`.
5656

5757
The resulting repository will generally require further processing

http.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ int http_get_strbuf(const char *url, struct strbuf *result, int options)
829829
}
830830

831831
/*
832-
* Downloads an url and stores the result in the given file.
832+
* Downloads a URL and stores the result in the given file.
833833
*
834834
* If a previous interrupted download is detected (i.e. a previous temporary
835835
* file is still around) the download is resumed.

http.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ extern char *get_remote_object_url(const char *url, const char *hex,
127127
#define HTTP_NOAUTH 5
128128

129129
/*
130-
* Requests an url and stores the result in a strbuf.
130+
* Requests a URL and stores the result in a strbuf.
131131
*
132132
* If the result pointer is NULL, a HTTP HEAD request is made instead of GET.
133133
*/

perl/Git.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ The hash is in the format C<refname =\> hash>. For tags, the C<refname> entry
691691
contains the tag object while a C<refname^{}> entry gives the tagged objects.
692692
693693
C<REPOSITORY> has the same meaning as the appropriate C<git-ls-remote>
694-
argument; either an URL or a remote name (if called on a repository instance).
694+
argument; either a URL or a remote name (if called on a repository instance).
695695
C<GROUPS> is an optional arrayref that can contain 'tags' to return all the
696696
tags and/or 'heads' to return all the heads. C<REFGLOB> is an optional array
697697
of strings containing a shell-like glob to further limit the refs returned in

transport.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ int transport_disconnect(struct transport *transport)
11541154
}
11551155

11561156
/*
1157-
* Strip username (and password) from an url and return
1157+
* Strip username (and password) from a URL and return
11581158
* it in a newly allocated string.
11591159
*/
11601160
char *transport_anonymize_url(const char *url)

0 commit comments

Comments
 (0)