@@ -272,7 +272,7 @@ cdef class Participant:
272272 Returns
273273 -------
274274 tag : bool
275- Returns True if inital data is required.
275+ Returns True if initial data is required.
276276
277277 Notes
278278 -----
@@ -284,10 +284,10 @@ cdef class Participant:
284284 def requires_writing_checkpoint (self ):
285285 """
286286 Checks if the participant is required to write an iteration checkpoint.
287-
287+
288288 If true, the participant is required to write an iteration checkpoint before
289289 calling advance().
290-
290+
291291 preCICE refuses to proceed if writing a checkpoint is required,
292292 but this method isn't called prior to advance().
293293
@@ -1062,7 +1062,7 @@ cdef class Participant:
10621062 vertex_ids : array_like
10631063 Indices of the vertices.
10641064 gradients : array_like
1065- Gradient values differentiated in the spacial direction (dx, dy) for 2D space, (dx, dy, dz) for 3D space
1065+ Gradient values differentiated in the spatial direction (dx, dy) for 2D space, (dx, dy, dz) for 3D space
10661066
10671067 Notes
10681068 -----
@@ -1117,7 +1117,7 @@ cdef class Participant:
11171117
11181118 def requires_gradient_data_for (self , mesh_name , data_name ):
11191119 """
1120- Checks if the given data set requires gradient data. We check if the data object has been intialized with the gradient flag.
1120+ Checks if the given data set requires gradient data. We check if the data object has been initialized with the gradient flag.
11211121
11221122 Parameters
11231123 ----------
@@ -1229,7 +1229,7 @@ cdef class Participant:
12291229 def start_profiling_section (self , event_name ):
12301230 """
12311231 Starts a profiling section with the given event name.
1232-
1232+
12331233 Parameters
12341234 ----------
12351235 event_name : str
@@ -1239,7 +1239,7 @@ cdef class Participant:
12391239 --------
12401240 Start a profiling section with the event name "EventOne":
12411241 >>> event_name = "EventOne"
1242- >>> participant.start_profiling_section(event_name)
1242+ >>> participant.start_profiling_section(event_name)
12431243 """
12441244 self .thisptr.startProfilingSection(convert(event_name))
12451245
0 commit comments