diff --git a/all.sas b/all.sas index ff90df7..712a034 100644 --- a/all.sas +++ b/all.sas @@ -7937,7 +7937,7 @@ run; @param [in] salt= Provide a salt (could be, for instance, the dataset name) @param [in] iftrue= A condition under which the macro should be executed. @param [out] outds= (work.mf_hashdataset) The output dataset to create. This - will contain one column (hashkey) with one observation (a hex32. + will contain one column (hashkey) with one observation (a $hex32. representation of the input hash) |hashkey:$32.| |---| @@ -9401,7 +9401,7 @@ put(md5( &sep put(md5(trim(put(ifn(missing(&var),&var,&var*1),binary64.))),$hex32.) %let sep=!!; %end; -),hex32.) +),$hex32.) %mend mp_md5; /** @file diff --git a/base/mp_hashdataset.sas b/base/mp_hashdataset.sas index b3c4275..4904a93 100644 --- a/base/mp_hashdataset.sas +++ b/base/mp_hashdataset.sas @@ -23,7 +23,7 @@ @param [in] salt= Provide a salt (could be, for instance, the dataset name) @param [in] iftrue= A condition under which the macro should be executed. @param [out] outds= (work.mf_hashdataset) The output dataset to create. This - will contain one column (hashkey) with one observation (a hex32. + will contain one column (hashkey) with one observation (a $hex32. representation of the input hash) |hashkey:$32.| |---| diff --git a/base/mp_md5.sas b/base/mp_md5.sas index 6405419..cbacdf0 100644 --- a/base/mp_md5.sas +++ b/base/mp_md5.sas @@ -54,5 +54,5 @@ put(md5( &sep put(md5(trim(put(ifn(missing(&var),&var,&var*1),binary64.))),$hex32.) %let sep=!!; %end; -),hex32.) +),$hex32.) %mend mp_md5;