Index: /issm/trunk/src/c/objects/Elements/Penta.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3817)
+++ /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3818)
@@ -26,5 +26,5 @@
 	this->matice=NULL;
 	this->matpar=NULL;
-	this->neighboors=NULL;
+	this->neighbors=NULL;
 	
 	this->inputs=NULL;
@@ -64,5 +64,5 @@
 	this->InitHookMatice(penta_matice_id);this->matice=NULL;
 	this->InitHookMatpar(penta_matpar_id);this->matpar=NULL;
-	this->InitHookNeighboors(penta_elements_ids);this->neighboors=NULL;
+	this->InitHookNeighboors(penta_elements_ids);this->neighbors=NULL;
 
 	//intialize inputs, and add as many inputs per element as requested: 
@@ -202,5 +202,5 @@
 	penta->hmatice.copy(&this->hmatice);
 	penta->hmatpar.copy(&this->hmatpar);
-	penta->hneighboors.copy(&this->hneighboors);
+	penta->hneighbors.copy(&this->hneighbors);
 
 	/*recover objects: */
@@ -208,5 +208,5 @@
 	penta->matice=(Matice*)penta->hmatice.delivers();
 	penta->matpar=(Matpar*)penta->hmatpar.delivers();
-	penta->neighboors=(Penta*)penta->hneighboors.deliverp();
+	penta->neighbors=(Penta*)penta->hneighbors.deliverp();
 
 	return penta;
@@ -223,5 +223,5 @@
 	this->hmatice.configure(materialsin);
 	this->hmatpar.configure(materialsin);
-	this->hneighboors.configure(elementsin);
+	this->hneighbors.configure(elementsin);
 
 	/*Now, go pick up the objects inside the hooks: */
@@ -229,5 +229,5 @@
 	this->matice=(Matice*)this->hmatice.delivers();
 	this->matpar=(Matpar*)this->hmatpar.delivers();
-	this->neighboors=(Penta*)this->hneighboors.deliverp();
+	this->neighbors=(Penta*)this->hneighbors.deliverp();
 
 	/*point parameters to real dataset: */
@@ -254,5 +254,5 @@
 	hmatice.Demarshall(&marshalled_dataset);
 	hmatpar.Demarshall(&marshalled_dataset);
-	hneighboors.Demarshall(&marshalled_dataset);
+	hneighbors.Demarshall(&marshalled_dataset);
 
 	/*pointers are garbabe, until configuration is carried out: */
@@ -260,5 +260,5 @@
 	matice=NULL;
 	matpar=NULL;
-	neighboors=NULL;
+	neighbors=NULL;
 	
 	/*demarshall inputs: */
@@ -332,5 +332,5 @@
 	hmatice.Marshall(&marshalled_dataset);
 	hmatpar.Marshall(&marshalled_dataset);
-	hneighboors.Marshall(&marshalled_dataset);
+	hneighbors.Marshall(&marshalled_dataset);
 
 	/*Marshall inputs: */
@@ -355,5 +355,5 @@
 		+hmatice.MarshallSize()
 		+hmatpar.MarshallSize()
-		+hneighboors.MarshallSize()
+		+hneighbors.MarshallSize()
 		+inputs->MarshallSize()
 		+sizeof(int); //sizeof(int) for enum type
Index: /issm/trunk/src/c/objects/Elements/PentaHook.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/PentaHook.cpp	(revision 3817)
+++ /issm/trunk/src/c/objects/Elements/PentaHook.cpp	(revision 3818)
@@ -47,5 +47,5 @@
 /*FUNCTION PentaHook::InitHookNeighboors(int* element_ids){{{1*/
 void PentaHook::InitHookNeighboors(int* element_ids){
-	this->hneighboors.Init(element_ids,2);
+	this->hneighbors.Init(element_ids,2);
 
 }
Index: /issm/trunk/src/c/objects/Elements/PentaHook.h
===================================================================
--- /issm/trunk/src/c/objects/Elements/PentaHook.h	(revision 3817)
+++ /issm/trunk/src/c/objects/Elements/PentaHook.h	(revision 3818)
@@ -14,5 +14,5 @@
 		Hook hmatice; // 1 ice material
 		Hook hmatpar; // 1 material parameter
-		Hook hneighboors; // 2 elements, first down, second up
+		Hook hneighbors; // 2 elements, first down, second up
 
 
