summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2008-11-29 19:18:43 +0000
committerShawn O. Pearce <spearce@spearce.org>2008-12-02 09:20:06 -0800
commit43288a0733c1dc0a506a1e45087bb7f9bd87d047 (patch)
tree52f3dfe9b5593c9dd45980c36e2499f2e9de701d /src
parentea790f337b0e401f5e4acabf9af9c2bc756d5f3b (diff)
downloadlibgit2-43288a0733c1dc0a506a1e45087bb7f9bd87d047.tar.gz
Fixup documentation to reflect the "git_obj" rename
commit dff79e27d3d2cdc09790ded80fe2ea8ff5d61034 renamed the (small object) "git_sobj" to a plain "git_obj", but neglected to update some of the documentation to reflect that change. Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'src')
-rw-r--r--src/git/odb.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/git/odb.h b/src/git/odb.h
index ca9840588..07f4f5f82 100644
--- a/src/git/odb.h
+++ b/src/git/odb.h
@@ -46,7 +46,7 @@ typedef enum {
GIT_OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */
} git_otype;
-/** A small object read from the database. */
+/** An object read from the database. */
typedef struct {
void *data; /**< Raw, decompressed object data. */
size_t len; /**< Total number of bytes in data. */
@@ -54,7 +54,7 @@ typedef struct {
} git_obj;
/**
- * Read a small object from the database.
+ * Read an object from the database.
*
* If GIT_ENOTFOUND then out->data is set to NULL.
*
@@ -68,7 +68,7 @@ typedef struct {
GIT_EXTERN(int) git_odb_read(git_obj *out, git_odb *db, const git_oid *id);
/**
- * Read a small object from the database using only pack files.
+ * Read an object from the database using only pack files.
*
* If GIT_ENOTFOUND then out->data is set to NULL.
*
@@ -82,7 +82,7 @@ GIT_EXTERN(int) git_odb_read(git_obj *out, git_odb *db, const git_oid *id);
GIT_EXTERN(int) git_odb__read_packed(git_obj *out, git_odb *db, const git_oid *id);
/**
- * Read a small object from the database using only loose object files.
+ * Read an object from the database using only loose object files.
*
* If GIT_ENOTFOUND then out->data is set to NULL.
*
@@ -96,7 +96,7 @@ GIT_EXTERN(int) git_odb__read_packed(git_obj *out, git_odb *db, const git_oid *i
GIT_EXTERN(int) git_odb__read_loose(git_obj *out, git_odb *db, const git_oid *id);
/**
- * Release all memory used by the sobj structure.
+ * Release all memory used by the obj structure.
*
* As a result of this call, obj->data will be set to NULL.
*