diff options
-rw-r--r-- | doc/dw-usage.doc | 2 | ||||
-rw-r--r-- | src/capi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/dw-usage.doc b/doc/dw-usage.doc index 913a4862..32080d74 100644 --- a/doc/dw-usage.doc +++ b/doc/dw-usage.doc @@ -222,7 +222,7 @@ called, within timeouts, idles, I/O functions etc. Notice that Dw is not thread safe, so that everything should be done within one thread. With the exception, that you have to call dw::Textblock::flush, -everything gets imediately visible, within reasonable times; Dw has +everything gets immediately visible, within reasonable times; Dw has been optimized for frequent updates. @@ -480,7 +480,7 @@ int a_Capi_open_url(DilloWeb *web, CA_Callback_t Call, void *CbData) /* create a new connection and start the CCC operations */ conn = Capi_conn_new(web->url, web->bw, "http", "none"); /* start the reception branch before the query one because the DNS - * may callback immediatly. This may avoid a race condition. */ + * may callback immediately. This may avoid a race condition. */ a_Capi_ccc(OpStart, 2, BCK, a_Chain_new(), conn, "http"); a_Capi_ccc(OpStart, 1, BCK, a_Chain_new(), conn, web); } |