From 6ca887ba56057d7aa052b68551adbd26ea10ffad Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Thu, 6 Jan 2022 13:01:31 +0000 Subject: [PATCH] chore(docs): fixing missing param --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cef8411..f03fdf7 100644 --- a/README.md +++ b/README.md @@ -230,10 +230,10 @@ run; %webout(CLOSE) /* Close the JSON and add default variables */ ``` -By default, special SAS numeric missings (_a-Z) are converted to `null` in the JSON. If you'd like to preserve these, use the `nullify=NO` option as follows: +By default, special SAS numeric missings (_a-Z) are converted to `null` in the JSON. If you'd like to preserve these, use the `missing=STRING` option as follows: ```sas -%webout(OBJ,a,nullify=NO) +%webout(OBJ,a,missing=STRING) ``` In this case, special missings (such as `.a`, `.b`) are converted to javascript string values (`'A', 'B'`).