summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2016-04-06 07:20:38 +0900
committerShlomi Fish <shlomif@shlomifish.org>2016-04-06 07:20:38 +0900
commit4d7af6eb10f07819fdd1628cddc598eab8d1e6d9 (patch)
tree9807c532499fdd7c7695b8790ad8e04d1d66a137
parent6f39485bd33920029a05c6760d28e0242943e4fd (diff)
downloadnspr-hg-4d7af6eb10f07819fdd1628cddc598eab8d1e6d9.tar.gz
Bug 1261691 - Fix some typos in prolock.h. r=glandium
-rw-r--r--pr/include/prolock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pr/include/prolock.h b/pr/include/prolock.h
index 4fe61f8f..5e5a4093 100644
--- a/pr/include/prolock.h
+++ b/pr/include/prolock.h
@@ -11,21 +11,21 @@
PR_BEGIN_EXTERN_C
/*
-** A locking mechanism, built on the existing PRLock definiion,
+** A locking mechanism, built on the existing PRLock definition,
** is provided that will permit applications to define a Lock
** Hierarchy (or Lock Ordering) schema. An application designed
** using the Ordered Lock functions will terminate with a
** diagnostic message when a lock inversion condition is
** detected.
**
-** The lock ordering detection is complile-time enabled only. in
+** The lock ordering detection is compile-time enabled only. In
** optimized builds of NSPR, the Ordered Lock functions map
** directly to PRLock functions, providing no lock order
** detection.
**
** The Ordered Lock Facility is compiled in when DEBUG is defined at
-** compile time. Ordered Lock can be forced on in optimized builds by
-** defining FORCE_NSPR_ORDERED_LOCK at compile time. Both the
+** compile-time. Ordered Lock can be forced on in optimized builds by
+** defining FORCE_NSPR_ORDERED_LOCK at compile-time. Both the
** application using Ordered Lock and NSPR must be compiled with the
** facility enabled to achieve the desired results.
**