From f5f8078f46951d16e948df040335188cbce4013e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maria=20Jos=C3=A9=20Solano?= Date: Sun, 26 Mar 2023 02:41:33 -0700 Subject: [PATCH] Fix typo in lenses.md (#350) --- functional/lenses.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functional/lenses.md b/functional/lenses.md index 37a81bc..c5f1ab5 100644 --- a/functional/lenses.md +++ b/functional/lenses.md @@ -7,7 +7,7 @@ They also have niche use cases. ## Lenses: Uniform Access Across Types -A lens is a concept from functional progamming languages that allows +A lens is a concept from functional programming languages that allows accessing parts of a data type in an abstract, unified way.[^1] In basic concept, it is similar to the way Rust traits work with type erasure, but it has a bit more power and flexibility.