summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpunkymaniac <punkymaniac@protonmail.ch>2022-01-11 15:06:00 +0100
committerpunkymaniac <punkymaniac@protonmail.ch>2022-01-11 15:06:00 +0100
commit4e93ecfa7a5626496cb357c9fe6f5f16f1bcac25 (patch)
tree903ea341ec352ce4c0b0cfce435f672770c9ecdf
parent5c8f7a99217cc74d0643f82774acff0aa5bbb610 (diff)
downloadlibgit2-4e93ecfa7a5626496cb357c9fe6f5f16f1bcac25.tar.gz
Separate function description from short description
-rw-r--r--include/git2/odb.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/git2/odb.h b/include/git2/odb.h
index c7c3a88a5..7b8d6f96b 100644
--- a/include/git2/odb.h
+++ b/include/git2/odb.h
@@ -214,12 +214,13 @@ typedef struct git_odb_expand_id {
/**
* Determine if one or more objects can be found in the object database
- * by their abbreviated object ID and type. The given array will be
- * updated in place: for each abbreviated ID that is unique in the
- * database, and of the given type (if specified), the full object ID,
- * object ID length (`GIT_OID_HEXSZ`) and type will be written back to
- * the array. For IDs that are not found (or are ambiguous), the
- * array entry will be zeroed.
+ * by their abbreviated object ID and type.
+ *
+ * The given array will be updated in place: for each abbreviated ID that is
+ * unique in the database, and of the given type (if specified),
+ * the full object ID, object ID length (`GIT_OID_HEXSZ`) and type will be
+ * written back to the array. For IDs that are not found (or are ambiguous),
+ * the array entry will be zeroed.
*
* Note that since this function operates on multiple objects, the
* underlying database will not be asked to be reloaded if an object is