From 19767ad551868f2c950fc992178f1fea5f0b24ec Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Sat, 14 Sep 2019 11:48:45 -0500 Subject: [PATCH] Taking another stab at replacing Span with Tag --- src/commands/get.rs | 4 ++-- tests/command_config_test.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands/get.rs b/src/commands/get.rs index 1c6d91d3..930392e5 100644 --- a/src/commands/get.rs +++ b/src/commands/get.rs @@ -18,7 +18,7 @@ impl WholeStreamCommand for Get { fn signature(&self) -> Signature { Signature::build("get") - .rest(SyntaxShape::Member) + .required("member", SyntaxShape::Member) .rest(SyntaxShape::Member) } @@ -60,7 +60,7 @@ fn get_member(path: &Tagged, obj: &Tagged) -> Result