@@ -217,13 +217,13 @@ class SurfaceInterface(PdmObjectBase):
217217 """
218218 Attributes:
219219 depth_offset (float): Depth Offset
220- surface_user_decription (str): Name
220+ surface_user_description (str): Name
221221 """
222222 __custom_init__ = None #: Assign a custom init routine to be run at __init__
223223
224224 def __init__ (self , pb2_object : Optional [PdmObject_pb2 .PdmObject ]= None , channel : Optional [grpc .Channel ]= None ) -> None :
225225 self .depth_offset : float = 0.000000000000000e+00
226- self .surface_user_decription : str = ""
226+ self .surface_user_description : str = ""
227227 PdmObjectBase .__init__ (self , pb2_object , channel )
228228 if SurfaceInterface .__custom_init__ is not None :
229229 SurfaceInterface .__custom_init__ (self , pb2_object = pb2_object , channel = channel )
@@ -404,12 +404,12 @@ def __init__(self, pb2_object: Optional[PdmObject_pb2.PdmObject]=None, channel:
404404class SurfaceCollection (PdmObjectBase ):
405405 """
406406 Attributes:
407- surface_user_decription (str): Name
407+ surface_user_description (str): Name
408408 """
409409 __custom_init__ = None #: Assign a custom init routine to be run at __init__
410410
411411 def __init__ (self , pb2_object : Optional [PdmObject_pb2 .PdmObject ]= None , channel : Optional [grpc .Channel ]= None ) -> None :
412- self .surface_user_decription : str = "Surfaces"
412+ self .surface_user_description : str = "Surfaces"
413413 PdmObjectBase .__init__ (self , pb2_object , channel )
414414 if SurfaceCollection .__custom_init__ is not None :
415415 SurfaceCollection .__custom_init__ (self , pb2_object = pb2_object , channel = channel )
@@ -777,7 +777,7 @@ def append_fracture_template(self, file_path: str="") -> StimPlanFractureTemplat
777777 Create a new StimPlan Fracture Template
778778
779779 Arguments:
780- file_path (str): File Path to StimPlan Countour File
780+ file_path (str): File Path to StimPlan Contour File
781781 Returns:
782782 StimPlanFractureTemplate
783783 """
0 commit comments