From 263cccc97abd8674e5e5156fb44c9685bf2cfb27 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 19 Aug 2018 09:35:13 -0500 Subject: [PATCH] DOCS: Update documentation for selectors. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d006dc7..ca0afef 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -159,8 +159,8 @@ //! #### Selectors //! //! Selectors are references to a bound value in ucg. They can index arbitrarily deep into either tuples or lists. -//! The head of a selector can be any expression that resolves to a tuple or list. Optionally a selector can also be -//! followed by either a bareword to index a tuple field or an integer to index a list position. +//! The head of a selector can be a tuple or list or symbol. Optionally a selector can also be followed by either a +//! bareword to index a tuple field or an integer to index a list position. //! //! The simplest selector is just a reference to a bound value by name. //!