Update documentation for API changes

This commit is contained in:
Jameson Miller 2015-04-30 10:57:13 -04:00
parent 891cc5045f
commit bf2ba5290a
2 changed files with 4 additions and 1 deletions

View File

@ -67,6 +67,8 @@ support for HTTPS connections insead of OpenSSL.
### Breaking API changes
* `git_smart_subtransport_cb` now has a `param` parameter.
* The `git_merge_options` structure member `flags` has been renamed
to `tree_flags`.

View File

@ -169,7 +169,7 @@ typedef struct {
/** The file to favor in region conflicts. */
git_merge_file_favor_t favor;
/** Merge file flags. */
/** see `git_merge_file_flags_t` above */
unsigned int flags;
} git_merge_file_options;
@ -246,6 +246,7 @@ typedef struct {
/** Flags for handling conflicting content. */
git_merge_file_favor_t file_favor;
/** see `git_merge_file_flags_t` above */
unsigned int file_flags;
} git_merge_options;