diff options
Diffstat (limited to 'source/helpers')
-rw-r--r-- | source/helpers/mu-office-lib/mu-office-lib.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/helpers/mu-office-lib/mu-office-lib.c b/source/helpers/mu-office-lib/mu-office-lib.c index b21ca976..65eae1a2 100644 --- a/source/helpers/mu-office-lib/mu-office-lib.c +++ b/source/helpers/mu-office-lib/mu-office-lib.c @@ -64,7 +64,7 @@ void Pal_Mem_free(void *address) #endif /* - All MuPDFs allocations are redirected through the + All MuPDF's allocations are redirected through the following functions. */ static void *muoffice_malloc(void *arg, size_t size) @@ -98,7 +98,7 @@ static fz_alloc_context muoffice_alloc = }; /* - All MuPDFs locking is done using the following functions + All MuPDF's locking is done using the following functions */ static void muoffice_lock(void *user, int lock); @@ -223,7 +223,7 @@ void MuOfficeLib_destroy(MuOfficeLib *mu) * Perform MuPDF native operations on a given MuOfficeLib * instance. * - * The function is called with an fz_context value that can + * The function is called with a fz_context value that can * be safely used (i.e. the context is cloned/dropped * appropriately around the call). The function should signal * errors by fz_throw-ing. @@ -259,7 +259,7 @@ MuError MuOfficeLib_run(MuOfficeLib *mu, void (*fn)(fz_context *ctx, void *arg), } /** - * Find the type of a file given it's filename extension. + * Find the type of a file given its filename extension. * * @param path path to the file (in utf8) * @@ -509,7 +509,7 @@ ensure_doc_loaded(MuOfficeDoc *doc) * Return the number of pages of a document * * This function waits for document loading to complete before returning - * the result. It may block the calling thread for a signficant period of + * the result. It may block the calling thread for a significant period of * time. To avoid blocking, this call should be avoided in favour of using * the MuOfficeLib_loadDocument callbacks to monitor loading. * @@ -1126,7 +1126,7 @@ MuError MuOfficePage_render( MuOfficePage *page, * render. * * This call is intended to support an app dealing with a user quickly - * flicking through document pages. A render may be sheduled but, before + * flicking through document pages. A render may be scheduled but, before * completion, be found not to be needed. In that case the bitmap will * need to be reused, which requires any existing render to be aborted. * The call to MuOfficeRender_destroy will cut short the render and |