Comment fixes

This commit is contained in:
Olly Betts 2023-05-23 09:40:24 +12:00
parent e358864523
commit de4adea210
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* ------------------------------------------------------------
/* -------------------------------------------------------------
* SWIG library containing argc and argv multi-argument typemaps
* ------------------------------------------------------------ */
* ------------------------------------------------------------- */
/* Preserve string vector as is */
%typemap(scoercein) (int ARGC, char **ARGV) ""
@ -8,7 +8,7 @@
%typemap(scheck) (int ARGC, char **ARGV) %{
assert(is.null($input) || (is.vector($input) && is.character($input)))
%}
/* check argument is a non empty string vector for dispatcher */
/* Check argument is null or a string vector for dispatcher */
%typemap(rtypecheck) (int ARGC, char **ARGV) %{
is.null($arg) || (is.vector($arg) && is.character($arg))
%}