diff options
author | Kirill A. Shutemov <kirill@shutemov.name> | 2011-06-30 19:52:34 +0300 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-07-01 18:02:56 +0200 |
commit | 932d1baf294aaacfd5a99e7758a3c08d8ffc22ab (patch) | |
tree | e6714d92345ed9a916d8cd771ab1588333d41998 /include/git2/odb.h | |
parent | 1f4f4d17046e43ca24da9621323d921ae0d0f5dd (diff) | |
download | libgit2-932d1baf294aaacfd5a99e7758a3c08d8ffc22ab.tar.gz |
cleanup: remove trailing spaces
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Diffstat (limited to 'include/git2/odb.h')
-rw-r--r-- | include/git2/odb.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/git2/odb.h b/include/git2/odb.h index 06b9aa5f1..ef16e1e42 100644 --- a/include/git2/odb.h +++ b/include/git2/odb.h @@ -91,7 +91,7 @@ GIT_EXTERN(int) git_odb_add_backend(git_odb *odb, git_odb_backend *backend, int * backend will work as an alternate. * * Alternate backends are always checked for objects *after* - * all the main backends have been exhausted. + * all the main backends have been exhausted. * * The backends are checked in relative ordering, based on the * value of the `priority` parameter. @@ -220,12 +220,12 @@ GIT_EXTERN(int) git_odb_write(git_oid *oid, git_odb *odb, const void *data, size * * The returned stream will be of type `GIT_STREAM_WRONLY` and * will have the following methods: - * + * * - stream->write: write `n` bytes into the stream * - stream->finalize_write: close the stream and store the object in * the odb * - stream->free: free the stream - * + * * The streaming write won't be effective until `stream->finalize_write` * is called and returns without an error * @@ -252,7 +252,7 @@ GIT_EXTERN(int) git_odb_open_wstream(git_odb_stream **stream, git_odb *db, size_ * * The returned stream will be of type `GIT_STREAM_RDONLY` and * will have the following methods: - * + * * - stream->read: read `n` bytes from the stream * - stream->free: free the stream * |