From b05636518b4e46caf9e6a689f11742c6a7a24c6b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 9 Jun 2018 03:48:03 +0100 Subject: [PATCH] doc/concepts.tex: Fix description of standard method combination. Organization: Straylight/Edgeware From: Mark Wooding --- doc/concepts.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/concepts.tex b/doc/concepts.tex index e4884bb..406c002 100644 --- a/doc/concepts.tex +++ b/doc/concepts.tex @@ -565,7 +565,7 @@ follows (see also~\xref{fig:concepts.methods.stdmeth}). next most specific such method, returning whichever value that method returns; otherwise the behaviour of @|next_method| is to invoke the @|before| methods (if any), followed by the most specific primary method, - followed by the @|around| methods (if any), and to return whichever value + followed by the @|after| methods (if any), and to return whichever value was returned by the most specific primary method, as described in the following items. That is, the behaviour of the least specific @|around| method's @|next_method| function is exactly the behaviour that the -- [mdw]