@@ -767,7 +767,7 @@ class RandomForestClassifier(ForestClassifier):
767767        The number of features to consider when looking for the best split: 
768768
769769        - If int, then consider `max_features` features at each split. 
770-         - If float, then `max_features` is a percentage  and 
770+         - If float, then `max_features` is a fraction  and 
771771          `int(max_features * n_features)` features are considered at each 
772772          split. 
773773        - If "auto", then `max_features=sqrt(n_features)`. 
@@ -788,23 +788,23 @@ class RandomForestClassifier(ForestClassifier):
788788        The minimum number of samples required to split an internal node: 
789789
790790        - If int, then consider `min_samples_split` as the minimum number. 
791-         - If float, then `min_samples_split` is a percentage  and 
791+         - If float, then `min_samples_split` is a fraction  and 
792792          `ceil(min_samples_split * n_samples)` are the minimum 
793793          number of samples for each split. 
794794
795795        .. versionchanged:: 0.18 
796-            Added float values for percentages . 
796+            Added float values for fractions . 
797797
798798    min_samples_leaf : int, float, optional (default=1) 
799799        The minimum number of samples required to be at a leaf node: 
800800
801801        - If int, then consider `min_samples_leaf` as the minimum number. 
802-         - If float, then `min_samples_leaf` is a percentage  and 
802+         - If float, then `min_samples_leaf` is a fraction  and 
803803          `ceil(min_samples_leaf * n_samples)` are the minimum 
804804          number of samples for each node. 
805805
806806        .. versionchanged:: 0.18 
807-            Added float values for percentages . 
807+            Added float values for fractions . 
808808
809809    min_weight_fraction_leaf : float, optional (default=0.) 
810810        The minimum weighted fraction of the sum total of weights (of all 
@@ -1045,7 +1045,7 @@ class RandomForestRegressor(ForestRegressor):
10451045        The number of features to consider when looking for the best split: 
10461046
10471047        - If int, then consider `max_features` features at each split. 
1048-         - If float, then `max_features` is a percentage  and 
1048+         - If float, then `max_features` is a fraction  and 
10491049          `int(max_features * n_features)` features are considered at each 
10501050          split. 
10511051        - If "auto", then `max_features=n_features`. 
@@ -1066,23 +1066,23 @@ class RandomForestRegressor(ForestRegressor):
10661066        The minimum number of samples required to split an internal node: 
10671067
10681068        - If int, then consider `min_samples_split` as the minimum number. 
1069-         - If float, then `min_samples_split` is a percentage  and 
1069+         - If float, then `min_samples_split` is a fraction  and 
10701070          `ceil(min_samples_split * n_samples)` are the minimum 
10711071          number of samples for each split. 
10721072
10731073        .. versionchanged:: 0.18 
1074-            Added float values for percentages . 
1074+            Added float values for fractions . 
10751075
10761076    min_samples_leaf : int, float, optional (default=1) 
10771077        The minimum number of samples required to be at a leaf node: 
10781078
10791079        - If int, then consider `min_samples_leaf` as the minimum number. 
1080-         - If float, then `min_samples_leaf` is a percentage  and 
1080+         - If float, then `min_samples_leaf` is a fraction  and 
10811081          `ceil(min_samples_leaf * n_samples)` are the minimum 
10821082          number of samples for each node. 
10831083
10841084        .. versionchanged:: 0.18 
1085-            Added float values for percentages . 
1085+            Added float values for fractions . 
10861086
10871087    min_weight_fraction_leaf : float, optional (default=0.) 
10881088        The minimum weighted fraction of the sum total of weights (of all 
@@ -1276,7 +1276,7 @@ class ExtraTreesClassifier(ForestClassifier):
12761276        The number of features to consider when looking for the best split: 
12771277
12781278        - If int, then consider `max_features` features at each split. 
1279-         - If float, then `max_features` is a percentage  and 
1279+         - If float, then `max_features` is a fraction  and 
12801280          `int(max_features * n_features)` features are considered at each 
12811281          split. 
12821282        - If "auto", then `max_features=sqrt(n_features)`. 
@@ -1297,23 +1297,23 @@ class ExtraTreesClassifier(ForestClassifier):
12971297        The minimum number of samples required to split an internal node: 
12981298
12991299        - If int, then consider `min_samples_split` as the minimum number. 
1300-         - If float, then `min_samples_split` is a percentage  and 
1300+         - If float, then `min_samples_split` is a fraction  and 
13011301          `ceil(min_samples_split * n_samples)` are the minimum 
13021302          number of samples for each split. 
13031303
13041304        .. versionchanged:: 0.18 
1305-            Added float values for percentages . 
1305+            Added float values for fractions . 
13061306
13071307    min_samples_leaf : int, float, optional (default=1) 
13081308        The minimum number of samples required to be at a leaf node: 
13091309
13101310        - If int, then consider `min_samples_leaf` as the minimum number. 
1311-         - If float, then `min_samples_leaf` is a percentage  and 
1311+         - If float, then `min_samples_leaf` is a fraction  and 
13121312          `ceil(min_samples_leaf * n_samples)` are the minimum 
13131313          number of samples for each node. 
13141314
13151315        .. versionchanged:: 0.18 
1316-            Added float values for percentages . 
1316+            Added float values for fractions . 
13171317
13181318    min_weight_fraction_leaf : float, optional (default=0.) 
13191319        The minimum weighted fraction of the sum total of weights (of all 
@@ -1525,7 +1525,7 @@ class ExtraTreesRegressor(ForestRegressor):
15251525        The number of features to consider when looking for the best split: 
15261526
15271527        - If int, then consider `max_features` features at each split. 
1528-         - If float, then `max_features` is a percentage  and 
1528+         - If float, then `max_features` is a fraction  and 
15291529          `int(max_features * n_features)` features are considered at each 
15301530          split. 
15311531        - If "auto", then `max_features=n_features`. 
@@ -1546,23 +1546,23 @@ class ExtraTreesRegressor(ForestRegressor):
15461546        The minimum number of samples required to split an internal node: 
15471547
15481548        - If int, then consider `min_samples_split` as the minimum number. 
1549-         - If float, then `min_samples_split` is a percentage  and 
1549+         - If float, then `min_samples_split` is a fraction  and 
15501550          `ceil(min_samples_split * n_samples)` are the minimum 
15511551          number of samples for each split. 
15521552
15531553        .. versionchanged:: 0.18 
1554-            Added float values for percentages . 
1554+            Added float values for fractions . 
15551555
15561556    min_samples_leaf : int, float, optional (default=1) 
15571557        The minimum number of samples required to be at a leaf node: 
15581558
15591559        - If int, then consider `min_samples_leaf` as the minimum number. 
1560-         - If float, then `min_samples_leaf` is a percentage  and 
1560+         - If float, then `min_samples_leaf` is a fraction  and 
15611561          `ceil(min_samples_leaf * n_samples)` are the minimum 
15621562          number of samples for each node. 
15631563
15641564        .. versionchanged:: 0.18 
1565-            Added float values for percentages . 
1565+            Added float values for fractions . 
15661566
15671567    min_weight_fraction_leaf : float, optional (default=0.) 
15681568        The minimum weighted fraction of the sum total of weights (of all 
@@ -1736,23 +1736,23 @@ class RandomTreesEmbedding(BaseForest):
17361736        The minimum number of samples required to split an internal node: 
17371737
17381738        - If int, then consider `min_samples_split` as the minimum number. 
1739-         - If float, then `min_samples_split` is a percentage  and 
1739+         - If float, then `min_samples_split` is a fraction  and 
17401740          `ceil(min_samples_split * n_samples)` is the minimum 
17411741          number of samples for each split. 
17421742
17431743        .. versionchanged:: 0.18 
1744-            Added float values for percentages . 
1744+            Added float values for fractions . 
17451745
17461746    min_samples_leaf : int, float, optional (default=1) 
17471747        The minimum number of samples required to be at a leaf node: 
17481748
17491749        - If int, then consider `min_samples_leaf` as the minimum number. 
1750-         - If float, then `min_samples_leaf` is a percentage  and 
1750+         - If float, then `min_samples_leaf` is a fraction  and 
17511751          `ceil(min_samples_leaf * n_samples)` is the minimum 
17521752          number of samples for each node. 
17531753
17541754        .. versionchanged:: 0.18 
1755-            Added float values for percentages . 
1755+            Added float values for fractions . 
17561756
17571757    min_weight_fraction_leaf : float, optional (default=0.) 
17581758        The minimum weighted fraction of the sum total of weights (of all 
0 commit comments