summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Blesi <patrick@ble.si>2017-02-25 23:09:42 -0600
committerGitHub <noreply@github.com>2017-02-25 23:09:42 -0600
commitc1239e33273db65b09660ff0efd4b58df0e97af0 (patch)
tree8bc4f221d0f8526027325e3900c1b364ca353ab1
parent7143145f2fcb0f7476f333f9df990b8a06cd52c0 (diff)
downloadlibgit2-c1239e33273db65b09660ff0efd4b58df0e97af0.tar.gz
Fix minor typos in CONVENTIONS.md
-rw-r--r--CONVENTIONS.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONVENTIONS.md b/CONVENTIONS.md
index 0be4b33cc..ffb696a4d 100644
--- a/CONVENTIONS.md
+++ b/CONVENTIONS.md
@@ -18,11 +18,11 @@ other's toes.
- If a function returns an object as a return value, that function is
a getter and the object's lifetime is tied to the parent
object. Objects which are returned as the first argument as a
- pointer-to-pointer are owned by the caller and it is repsponsible
+ pointer-to-pointer are owned by the caller and it is responsible
for freeing it. Strings are returned via `git_buf` in order to
allow for re-use and safe freeing.
- - Most of what libgit2 does relates to I/O so you as a general rule
+ - Most of what libgit2 does relates to I/O so as a general rule
you should assume that any function can fail due to errors as even
getting data from the filesystem can result in all sorts of errors
and complex failure cases.