summaryrefslogtreecommitdiff
path: root/src/comm
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-11-19 23:27:20 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-11-19 23:27:20 +0000
commit2c8b631ff1123c95fd47e14e074f7732285723fe (patch)
treeb3bf1db690c1a8ed932ff5c48a26c26d80a50e7b /src/comm
parent4794697a8df3edc0f0e8342a772fb06a6b73974f (diff)
Correct typos in comments.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4197 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm')
-rw-r--r--src/comm/CactusDefaultComm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
index 5f6db79f..5f0e0f29 100644
--- a/src/comm/CactusDefaultComm.c
+++ b/src/comm/CactusDefaultComm.c
@@ -185,7 +185,7 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
n_variables = CCTK_NumVars();
/* Allocate memory for the variable data pointers.
- * Note we want at least one to prevent memory allocattion from failing !
+ * Note we want at least one to prevent memory allocation from failing!
*/
thisGH->data = malloc((n_variables ? n_variables:1)*sizeof(void **));
if(thisGH->data)
@@ -205,7 +205,7 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
thisGH->extensions = NULL;
/* Allocate memory for the group data pointers.
- * Note we want at least one to prevent memory allocattion from failing !
+ * Note we want at least one to prevent memory allocation from failing !
*/
n_groups = CCTK_NumGroups();
thisGH->GroupData = malloc((n_groups ? n_groups:1)*sizeof(cGHGroupData));