diff options
author | Thomas Braun <thomas.braun@byte-physics.de> | 2015-10-13 22:30:06 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-10-20 20:03:01 (GMT) |
commit | ace0af42e330a96ad691b2d9a08dd3ff4abb2629 (patch) | |
tree | bcb95be505bde5223bb84b4089b3eb4183959844 | |
parent | 59a42f974f15fa0154317900ffd9b82babd985ad (diff) | |
download | Doxygen-ace0af42e330a96ad691b2d9a08dd3ff4abb2629.zip Doxygen-ace0af42e330a96ad691b2d9a08dd3ff4abb2629.tar.gz Doxygen-ace0af42e330a96ad691b2d9a08dd3ff4abb2629.tar.bz2 |
Fix typo in function name
As both declarations should only differ by cv-qualifiers.
Signed-off-by: Thomas Braun <thomas.braun@byte-physics.de>
-rw-r--r-- | doc/autolink.doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/autolink.doc b/doc/autolink.doc index b0020b1..b434dd2 100644 --- a/doc/autolink.doc +++ b/doc/autolink.doc @@ -77,7 +77,7 @@ 'fun(const std::string&,bool)' or '()' to match any prototype. \par Note 2: Member function modifiers (like 'const' and 'volatile') - are required to identify the target, i.e. 'func(int) const' and 'fun(int)' + are required to identify the target, i.e. 'func(int) const' and 'func(int)' target different member functions. \par Note 3: For JavaDoc compatibility a \# may be used instead of a :: in |