aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-10 00:02:31 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-10 00:02:31 +0000
commitc005f2ff071da28964d7b2f60a9b273b3e9685b4 (patch)
tree9350ce9bdfc20b1cd57f96ce4d59d09c8491651e /src/utils
parent1a6897a86c7bcd48f6e4bc24a7a48c967fc9c55b (diff)
downloadopen-axiom-c005f2ff071da28964d7b2f60a9b273b3e9685b4.tar.gz
Cleanup
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/storage.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/storage.H b/src/utils/storage.H
index ad8eaa09..47015ed9 100644
--- a/src/utils/storage.H
+++ b/src/utils/storage.H
@@ -32,7 +32,7 @@
// --% Author: Gabriel Dos Reis
// --% Description:
// --% Memory management facility. Acquire raw memory directly
-// --% directly for the host OS. Provide random access read to
+// --% from the host OS. Provide random access read to
// --% files through file mapping.
#ifndef OPENAXIOM_STORAGE_INCLUDED
@@ -252,7 +252,7 @@ namespace OpenAxiom {
template<typename T>
Arena<T>::~Arena() {
- // Destroy objects in the reverse order of their
+ // Release storage in the reverse order of their
// their allocation.
while (store != 0) {
Storage* current = store;