File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -704,7 +704,7 @@ def agg_data(self, intent_code=None):
704704 -------
705705 tuple of ndarrays or ndarray
706706 If the input is a tuple, the returned tuple will match the order.
707-
707+
708708 Examples
709709 --------
710710 >>> import nibabel as nib
@@ -716,17 +716,17 @@ def agg_data(self, intent_code=None):
716716
717717 Retrieve data without passing ``intent code``
718718
719- >>> surf_data = surf_gii_img.agg_data()
719+ >>> surf_data = surf_gii_img.agg_data()
720720 >>> func_data = func_gii_img.agg_data()
721721
722722 When passig matching intend codes ``intent_code``
723-
723+
724724 >>> pointset_data = surf_gii_img.agg_data('pointset') # surface pointset
725725 >>> triangle_data = surf_gii_img.agg_data('triangle') # surface triangle
726726 >>> ts_data = func_gii_img.agg_data('time series') # functional file
727-
727+
728728 When passing mismatching ``intent_code``, the function return a empty ``tuple``
729-
729+
730730 >>> surf_gii_img.agg_data('time series')
731731 ()
732732 >>> func_gii_img.agg_data('triangle')
You can’t perform that action at this time.
0 commit comments