summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2017-02-17 11:36:34 +0100
committerKai Engert <kaie@kuix.de>2017-02-17 11:36:34 +0100
commit5b2b649cf10a9538213e56a69ca51827a6007156 (patch)
treefb6f4575f6b0503570be93d648dd74c696e982fd
parent2b69fd3e60219e726b4da87f0e3a33145166dd11 (diff)
downloadnss-hg-5b2b649cf10a9538213e56a69ca51827a6007156.tar.gz
Comment mentioned about nonexistent functions, change it to the real functions. No bug, comment-only change, r=me
DONTBUILD
-rw-r--r--lib/util/secport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/secport.h b/lib/util/secport.h
index 0f4b08f33..fb9ff4ebb 100644
--- a/lib/util/secport.h
+++ b/lib/util/secport.h
@@ -72,8 +72,8 @@
* and does not use a lock to protect accesses. This makes it cheaper but
* less general. It is best used for arena pools that (a) are hot, (b) have
* lifetimes bounded within a single function, and (c) don't need locking.
- * Use PORT_InitArena() and PORT_DestroyArena() to initialize and finalize
- * PORTCheapArenaPools.
+ * Use PORT_InitCheapArena() and PORT_DestroyCheapArena() to initialize and
+ * finalize PORTCheapArenaPools.
*
* All the other PORT_Arena* functions will operate safely with either
* subclass.