File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -272,10 +272,10 @@ argument for the FUNCTION."
272272 for k in keys collect
273273 (cons k (funcall function (lookup k alist1) (lookup k alist2))))))
274274
275- (defun org--plot/item-frequencies (values &optional normalise )
275+ (defun org--plot/item-frequencies (values &optional normalize )
276276 " Return an alist indicating the frequency of values in VALUES list.
277- When NORMALISE is non-nil, the count is divided by the number of values."
278- (let ((normaliser (if normalise (float (length values)) 1 )))
277+ When NORMALIZE is non-nil, the count is divided by the number of values."
278+ (let ((normaliser (if normalize (float (length values)) 1 )))
279279 (cl-loop for (n . m) in (seq-group-by #'identity values)
280280 collect (cons n (/ (length m) normaliser)))))
281281
You can’t perform that action at this time.
0 commit comments