From 0b5ba0d744e69da5dc8c08d167c83dd87ed83af2 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 6 Jun 2019 16:36:23 -0400 Subject: Rename opt init functions to `options_init` In libgit2 nomenclature, when we need to verb a direct object, we name a function `git_directobject_verb`. Thus, if we need to init an options structure named `git_foo_options`, then the name of the function that does that should be `git_foo_options_init`. The previous names of `git_foo_init_options` is close - it _sounds_ as if it's initializing the options of a `foo`, but in fact `git_foo_options` is its own noun that should be respected. Deprecate the old names; they'll now call directly to the new ones. --- include/git2/status.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/git2/status.h') diff --git a/include/git2/status.h b/include/git2/status.h index 06229ed2e..586d2cabb 100644 --- a/include/git2/status.h +++ b/include/git2/status.h @@ -200,7 +200,7 @@ typedef struct { * @param version The struct version; pass `GIT_STATUS_OPTIONS_VERSION`. * @return Zero on success; -1 on failure. */ -GIT_EXTERN(int) git_status_init_options( +GIT_EXTERN(int) git_status_options_init( git_status_options *opts, unsigned int version); -- cgit v1.2.1