summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/path.h
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-01-04 20:06:57 +0100
committerSebastian Rasmussen <sebras@gmail.com>2017-01-17 20:24:24 +0100
commitb1085c6816c093409c745a41567c8c3009917e27 (patch)
tree53404678b5ea5a816528f0e5ebd589a241cab447 /include/mupdf/fitz/path.h
parentf45ed2539978f86e9a7fe0185f8bbeec398fb087 (diff)
downloadmupdf-b1085c6816c093409c745a41567c8c3009917e27.tar.xz
Fix typos.
Diffstat (limited to 'include/mupdf/fitz/path.h')
-rw-r--r--include/mupdf/fitz/path.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mupdf/fitz/path.h b/include/mupdf/fitz/path.h
index da8b2801..40604a2f 100644
--- a/include/mupdf/fitz/path.h
+++ b/include/mupdf/fitz/path.h
@@ -134,11 +134,11 @@ int fz_packed_path_size(const fz_path *path);
fz_pack_path: Pack a path into the given block.
To minimise the size of paths, this function allows them to be
packed into a buffer with other information. Paths can be used
- interchangably regardless of how they are packed.
+ interchangeably regardless of how they are packed.
pack: Pointer to a block of data to pack the path into. Should
be aligned by the caller to the same alignment as required for
- an fz_path pointer.
+ a fz_path pointer.
max: The number of bytes available in the block.
If max < sizeof(fz_path) then an exception will
@@ -151,7 +151,7 @@ int fz_packed_path_size(const fz_path *path);
Returns the number of bytes within the block used. Callers can
access the packed path data by casting the value of pack on
- entry to be an fz_path *.
+ entry to be a fz_path *.
Throws exceptions on failure to allocate, or if
max < sizeof(fz_path).