From d358b809c96f6365a5879029dbb8b3a5f05b6321 Mon Sep 17 00:00:00 2001 From: nteetor Date: Mon, 27 Feb 2017 10:23:26 -0500 Subject: [PATCH] small clarification --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2aa31dd..5abb924 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ Variable assignment with zeal! ## What's there to be excited about? -zeallot allows multiple or unpacking assignment in R. With zeallot you can -tighten code with explicit variable names, unpack pieces of a lengthy list or -the entirety of a small list, de-structure and assign object elements, or do -it all at once. +zeallot allows multiple or unpacking assignment in R by providing the `%<-%` +operator. With zeallot you can tighten code with explicit variable names, unpack +pieces of a lengthy list or the entirety of a small list, de-structure and +assign object elements, or do it all at once. ```R x : y %<-% c(0, 1)