Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2018-05-23 16:33:02 +02:00
parent 1b67166921
commit 89bd016ef4
34 changed files with 36 additions and 36 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
*
* The application has a global context and a session context. The global
* context is accessed from all sessions simultaneously and therefore
* needs to be threadsave. Often a database wrapper is the global context.
* needs to be threadsafe. Often a database wrapper is the global context.
* The session context is instantiated per session. Sessions are managed
* automatically through session cookies. The session context is kept alive
* until the session times out. It must implement the context_t interface and
+1 -1
View File
@@ -75,7 +75,7 @@ struct private_fast_request_t {
};
/**
* ClearSilver cgiwrap is not threadsave, so we use a private
* ClearSilver cgiwrap is not threadsafe, so we use a private
* context for each thread.
*/
static thread_value_t *thread_this;