Skip to content

Commit a051ee3

Browse files
author
Edward Thomson
authored
Merge pull request libgit2#3978 from pks-t/pks/doc-improvements
Small documentation improvements
2 parents e3298a3 + dc98cb2 commit a051ee3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

PROJECTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ So, you want to start helping out with `libgit2`? That's fantastic! We
55
welcome contributions and we promise we'll try to be nice.
66

77
This is a list of libgit2 related projects that new contributors can take
8-
on. It includes a number of good starter projects and well as some larger
8+
on. It includes a number of good starter projects as well as some larger
99
ideas that no one is actively working on.
1010

1111
## Before You Start
@@ -70,11 +70,11 @@ some incremental steps listed towards the larger goal. Those steps
7070
might make good smaller projects by themselves.
7171

7272
* Port part of the Git test suite to run against the command line emulation
73-
in examples/
74-
* Pick a Git command that is emulated in our examples/ area
73+
in `examples/`
74+
* Pick a Git command that is emulated in our `examples/` area
7575
* Extract the Git tests that exercise that command
7676
* Convert the tests to call our emulation
77-
* These tests could go in examples/tests/...
77+
* These tests could go in `examples/tests/`...
7878
* Add hooks API to enumerate and manage hooks (not run them at this point)
7979
* Enumeration of available hooks
8080
* Lookup API to see which hooks have a script and get the script

THREADING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ of libssh2 as described above, `git_openssl_set_locking()` is a no-op.
8888

8989
If your programming language offers a package/bindings for OpenSSL,
9090
you should very strongly prefer to use that in order to set up
91-
locking, as they provide a level of coördination which is impossible
91+
locking, as they provide a level of coordination which is impossible
9292
when using this function.
9393

9494
See the
@@ -102,7 +102,7 @@ if there are alternatives provided by the system.
102102
libssh2 may be linked against OpenSSL or libgcrypt. If it uses OpenSSL,
103103
see the above paragraphs. If it uses libgcrypt, then you need to
104104
set up its locking before using it multi-threaded. libgit2 has no
105-
direct connection to libgcrypt and thus has not convenience functions for
105+
direct connection to libgcrypt and thus has no convenience functions for
106106
it (but libgcrypt has macros). Read libgcrypt's
107107
[threading documentation for more information](http://www.gnupg.org/documentation/manuals/gcrypt/Multi_002dThreading.html)
108108

src/openssl_stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ int git_openssl_set_locking(void)
148148
git__on_shutdown(shutdown_ssl_locking);
149149
return 0;
150150
#else
151-
giterr_set(GITERR_THREAD, "libgit2 as not built with threads");
151+
giterr_set(GITERR_THREAD, "libgit2 was not built with threads");
152152
return -1;
153153
#endif
154154
}

0 commit comments

Comments
 (0)