From f137840aa9adee7adcb323e87dc62878cf213a7c Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Mon, 7 Mar 2022 17:39:22 +1300 Subject: Clarify name used for matching out typemaps Based on a patch from Dustin J. Mitchell in https://sourceforge.net/p/swig/bugs/915/ --- Doc/Manual/Typemaps.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Doc/Manual/Typemaps.html b/Doc/Manual/Typemaps.html index 2d6e5d190..92aa6e2db 100644 --- a/Doc/Manual/Typemaps.html +++ b/Doc/Manual/Typemaps.html @@ -1060,9 +1060,11 @@ The matching rules can be observed in practice by using the debugging options al

-Typemaps are matched using both a type and a name (typically the name of a argument). For a given -TYPE NAME pair, the following rules are applied, in order, to find a match. The first typemap found -is used. +Typemaps are matched using both a type and a name (typically the name of an +argument, but in the case of out typemaps, the name of a function, +qualified by the class name if it's a class method). For a given TYPE +NAME pair, the following rules are applied, in order, to find a match. +The first typemap found is used.