From 569abdf4876c0805064636e7041be8c41caacbd1 Mon Sep 17 00:00:00 2001 From: archshift Date: Wed, 1 Feb 2017 08:10:55 -0800 Subject: [PATCH] Update coercion definition in summary --- text/0000-closure-to-fn-coercion.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/0000-closure-to-fn-coercion.md b/text/0000-closure-to-fn-coercion.md index bec4c0accdc..5e6a9bb5f58 100644 --- a/text/0000-closure-to-fn-coercion.md +++ b/text/0000-closure-to-fn-coercion.md @@ -6,8 +6,8 @@ # Summary [summary]: #summary -A non-capturing (that is, does not `Clone` or `move` any local variables) closure -should be coercable to a function pointer (`fn`). +A closure that does not move, borrow, or otherwise access (capture) local +variables should be coercable to a function pointer (`fn`). # Motivation [motivation]: #motivation