From d4d246e52b6410daa736e44d2dabfa0579995908 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 28 Aug 2015 22:10:25 -0700 Subject: [PATCH] runtime-config: Drop optional 'options' when empty The field is optional, so why bother giving an empty value? Signed-off-by: W. Trevor King --- runtime-config.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/runtime-config.md b/runtime-config.md index bcb1f46a1..0f58bb6a1 100644 --- a/runtime-config.md +++ b/runtime-config.md @@ -14,8 +14,7 @@ Additional filesystems can be declared as "mounts", specified in the *mounts* ar { "type": "proc", "source": "proc", - "destination": "/proc", - "options": [] + "destination": "/proc" }, { "type": "tmpfs", @@ -45,8 +44,7 @@ Additional filesystems can be declared as "mounts", specified in the *mounts* ar { "type": "ntfs", "source": "\\\\?\\Volume\\{2eca078d-5cbc-43d3-aff8-7e8511f60d0e}\\", - "destination": "C:\\Users\\crosbymichael\\My Fancy Mount Point\\", - "options": [] + "destination": "C:\\Users\\crosbymichael\\My Fancy Mount Point\\" } ] ```