Skip to content

Commit 790fc8a

Browse files
authored
Merge pull request #6225 from janezd/datainfo-remove-s
Data Info: Fix wrong plural
2 parents eca9c46 + c05eacb commit 790fc8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/data/owdatainfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def _p_targets(self, data):
145145
if not cont_class:
146146
return f"{disc_class} categorical {pl(disc_class, 'target')}"
147147
elif not disc_class:
148-
return f"{cont_class} numeric {pl(cont_class, 'targets')}"
148+
return f"{cont_class} numeric {pl(cont_class, 'target')}"
149149
return "multi-target data,<br/>" + self._pack_var_counts(class_vars)
150150

151151
@classmethod

0 commit comments

Comments
 (0)