Skip to content

Commit 3e6a904

Browse files
authored
Merge pull request libgit2#5320 from josharian/minor-docs
Minor doc improvements
2 parents b317858 + 64e6db5 commit 3e6a904

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/changelog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ v0.28 + 1
8484

8585
### Changes or improvements
8686

87-
* libgit2 can now correctly cope with URLs where the host contains a colon
88-
but a port is not specified. (eg `http://example.com:/repo.git`).
87+
* libgit2 now correctly handles more URLs, such as
88+
`http://example.com:/repo.git` (colon but no port),
89+
`http://example.com` (no path),
90+
and `http://example.com:8080/` (path is /, nonstandard port).
8991

9092
* A carefully constructed commit object with a very large number
9193
of parents may lead to potential out-of-bounds writes or

include/git2/stash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ typedef int GIT_CALLBACK(git_stash_apply_progress_cb)(
126126
typedef struct git_stash_apply_options {
127127
unsigned int version;
128128

129-
/** See `git_stash_apply_flags_t`, above. */
129+
/** See `git_stash_apply_flags`, above. */
130130
uint32_t flags;
131131

132132
/** Options to use when writing files to the working directory. */

0 commit comments

Comments
 (0)