From 7fc75e5af0e39cf2785654f1bca7227b2494c910 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Thu, 31 May 2018 10:21:46 -0700 Subject: [PATCH] more correct comments --- libraries/workload/src/workload/Transaction.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/workload/src/workload/Transaction.h b/libraries/workload/src/workload/Transaction.h index 506e3359e6..f7041859b6 100644 --- a/libraries/workload/src/workload/Transaction.h +++ b/libraries/workload/src/workload/Transaction.h @@ -140,16 +140,16 @@ public: // This call is thread safe, can be called from anywhere to allocate a new ID ProxyID allocateID(); - // Check that the ID is valid and allocated for this space, this a threadsafe call + // Check that the ID is valid and allocated for this collection, this a threadsafe call bool isAllocatedID(const ProxyID& id) const; // THis is the total number of allocated proxies, this a threadsafe call Index getNumAllocatedProxies() const { return _IDAllocator.getNumAllocatedIndices(); } - // Enqueue transaction to the space + // Enqueue transaction to the collection void enqueueTransaction(const Transaction& transaction); - // Enqueue transaction to the space + // Enqueue transaction to the collection void enqueueTransaction(Transaction&& transaction); // Enqueue end of frame transactions boundary