From 1c4c9793f63ed64865708690d9920e807f1f9aa6 Mon Sep 17 00:00:00 2001 From: Allan Date: Fri, 18 Aug 2023 08:25:19 +0100 Subject: [PATCH] chore: missed some doxygen in/out tags --- all.sas | 20 +++++++++++--------- base/mp_csv2ds.sas | 11 ++++++----- base/mp_deleteconstraints.sas | 9 +++++---- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/all.sas b/all.sas index 82e61c8..2a49523 100644 --- a/all.sas +++ b/all.sas @@ -4478,11 +4478,12 @@ run; %mp_csv2ds(inref=mycsv,outds=myds,baseds=sashelp.class) - @param inref= (0) Fileref to the CSV - @param outds= (0) Output ds (lib.ds format) - @param view= (NO) Set to YES or NO to determine whether the output should be - a view or not. Default is NO (not a view). - @param baseds= (0) Template dataset on which to create the input statement. + @param [in] inref= (0) Fileref to the CSV + @param [out] outds= (0) Output ds (lib.ds format) + @param [in] view= (NO) Set to YES or NO to determine whether the output + should be a view or not. Default is NO (not a view). + @param [in] baseds= (0) + Template dataset on which to create the input statement. Is used to determine types, lengths, and any informats. @version 9.2 @@ -4615,10 +4616,11 @@ run; %mp_getconstraints(lib=work,ds=example,outds=work.constraints) %mp_deleteconstraints(inds=work.constraints,outds=dropped,execute=YES) - @param inds= (mp_getconstraints) The input table containing constraint info - @param outds= (mp_deleteconstraints) Table containing the drop statements - (drop_statement column) - @param execute= (NO) `YES|NO` - default is NO. To actually drop, use YES. + @param [in] inds= (mp_getconstraints) + The input table containing constraint info + @param [out] outds= (mp_deleteconstraints) + Table containing the drop statements (drop_statement column) + @param [in] execute= (NO) `YES|NO` - default is NO. To actually drop, use YES. @version 9.2 diff --git a/base/mp_csv2ds.sas b/base/mp_csv2ds.sas index d75a7e1..87fa47e 100644 --- a/base/mp_csv2ds.sas +++ b/base/mp_csv2ds.sas @@ -19,11 +19,12 @@ %mp_csv2ds(inref=mycsv,outds=myds,baseds=sashelp.class) - @param inref= (0) Fileref to the CSV - @param outds= (0) Output ds (lib.ds format) - @param view= (NO) Set to YES or NO to determine whether the output should be - a view or not. Default is NO (not a view). - @param baseds= (0) Template dataset on which to create the input statement. + @param [in] inref= (0) Fileref to the CSV + @param [out] outds= (0) Output ds (lib.ds format) + @param [in] view= (NO) Set to YES or NO to determine whether the output + should be a view or not. Default is NO (not a view). + @param [in] baseds= (0) + Template dataset on which to create the input statement. Is used to determine types, lengths, and any informats. @version 9.2 diff --git a/base/mp_deleteconstraints.sas b/base/mp_deleteconstraints.sas index 1744b31..c07aab8 100644 --- a/base/mp_deleteconstraints.sas +++ b/base/mp_deleteconstraints.sas @@ -17,10 +17,11 @@ %mp_getconstraints(lib=work,ds=example,outds=work.constraints) %mp_deleteconstraints(inds=work.constraints,outds=dropped,execute=YES) - @param inds= (mp_getconstraints) The input table containing constraint info - @param outds= (mp_deleteconstraints) Table containing the drop statements - (drop_statement column) - @param execute= (NO) `YES|NO` - default is NO. To actually drop, use YES. + @param [in] inds= (mp_getconstraints) + The input table containing constraint info + @param [out] outds= (mp_deleteconstraints) + Table containing the drop statements (drop_statement column) + @param [in] execute= (NO) `YES|NO` - default is NO. To actually drop, use YES. @version 9.2