summaryrefslogtreecommitdiff
path: root/zen/guid.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/guid.h')
-rw-r--r--zen/guid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/guid.h b/zen/guid.h
index e8326ce6..914674af 100644
--- a/zen/guid.h
+++ b/zen/guid.h
@@ -22,7 +22,7 @@
namespace zen
{
inline
-std::string generateGUID() //creates a 16 byte GUID
+std::string generateGUID() //creates a 16-byte GUID
{
boost::uuids::uuid nativeRep = boost::uuids::random_generator()();
//generator is only thread-safe like an int, so we keep it local until we need to optimize perf
bgstack15