mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-13 15:40:58 +00:00
Fix places where Doxygen documentation uses \p to refer to a parameter name and where the name used did not match the actual parameter name. I used the following script to detect problematic cases: ``` perl -w -ne 'if (eof) { $. = 0; } if (m!^/\*\*!) { $in_doc = 1; %param = (); %p = (); } if (m!\*/!) { foreach $name (keys %p) { if (!$param{$name}) { foreach $line (@{$p{$name}}) { print "$ARGV:$line: $name\n" } } } $in_doc = 0; } if ($in_doc) { if (/\\param(?: *\[[^\[\]]*\])? +(\w+)/) { $param{$1} = 1; } foreach (/\\p +\*?(\w+)/) { push @{$p{$1}}, $.; } }' include/psa/*.h ``` This commits fixes all the remaining occurrences under include/psa, which were just trivial name mismatches. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>