summaryrefslogtreecommitdiff
path: root/src/cairo-mutex-impl-private.h
diff options
context:
space:
mode:
authorDaniel Holbert <dholbert@mozilla.com>2009-01-23 10:18:48 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2009-01-29 10:10:40 +0000
commitd108b2777fcd6ef4fa45aeeef457dc58522e325b (patch)
tree41fce3b11638023264b503017cf58e1ac18907b2 /src/cairo-mutex-impl-private.h
parent6394ec3048f31b867d9588853fa400c6c630c6f1 (diff)
downloadcairo-d108b2777fcd6ef4fa45aeeef457dc58522e325b.tar.gz
Spelling corrections: s/it's/its/
As a fun itch to scratch, I've been fixing incorrect uses of the contraction "it's" in comments within the mozilla source tree (tracked in https://bugzilla.mozilla.org/show_bug.cgi?id=458167 ), and I ran across 6 instances of this typo in mozilla's snapshot of cairo. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-mutex-impl-private.h')
-rw-r--r--src/cairo-mutex-impl-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-mutex-impl-private.h b/src/cairo-mutex-impl-private.h
index 9df14a431..a956b5215 100644
--- a/src/cairo-mutex-impl-private.h
+++ b/src/cairo-mutex-impl-private.h
@@ -53,7 +53,7 @@
/* A fully qualified no-operation statement */
#define CAIRO_MUTEX_IMPL_NOOP do {/*no-op*/} while (0)
-/* And one that evaluates it's argument once */
+/* And one that evaluates its argument once */
#define CAIRO_MUTEX_IMPL_NOOP1(expr) do { (void)(expr); } while (0)
/* Note: 'if (expr) {}' is an alternative to '(void)(expr);' that will 'use' the
* result of __attribute__((warn_used_result)) functions. */