Unverified Commit 3e6a9045 by Patrick Steinhardt Committed by GitHub

Merge pull request #5320 from josharian/minor-docs

Minor doc improvements
parents b3178587 64e6db5b
......@@ -84,8 +84,10 @@ v0.28 + 1
### Changes or improvements
* libgit2 can now correctly cope with URLs where the host contains a colon
but a port is not specified. (eg `http://example.com:/repo.git`).
* libgit2 now correctly handles more URLs, such as
`http://example.com:/repo.git` (colon but no port),
`http://example.com` (no path),
and `http://example.com:8080/` (path is /, nonstandard port).
* A carefully constructed commit object with a very large number
of parents may lead to potential out-of-bounds writes or
......
......@@ -126,7 +126,7 @@ typedef int GIT_CALLBACK(git_stash_apply_progress_cb)(
typedef struct git_stash_apply_options {
unsigned int version;
/** See `git_stash_apply_flags_t`, above. */
/** See `git_stash_apply_flags`, above. */
uint32_t flags;
/** Options to use when writing files to the working directory. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment