branch: externals/transient commit f5e600d3f49d736ba201f3343a29907283e74da5 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
transient-init-value: Fix typo in doc-strings --- lisp/transient.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/transient.el b/lisp/transient.el index c10db311e4..ac718ba850 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -2434,14 +2434,14 @@ Non-infix suffix commands usually don't have a value." (cl-defmethod transient-init-value :around ((obj transient-prefix)) "If bound, then call OBJ's `init-value' function. -Otherwise call the primary method according to objects class." +Otherwise call the primary method according to object's class." (if (slot-boundp obj 'init-value) (funcall (oref obj init-value) obj) (cl-call-next-method obj))) (cl-defmethod transient-init-value :around ((obj transient-infix)) "If bound, then call OBJ's `init-value' function. -Otherwise call the primary method according to objects class." +Otherwise call the primary method according to object's class." (if (slot-boundp obj 'init-value) (funcall (oref obj init-value) obj) (cl-call-next-method obj)))