From cf5f1632933a146c82ae9b33e76d89241d976dbd Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Thu, 7 Mar 2024 09:07:59 -0600 Subject: [PATCH] typo fix in scoped values docs (#53629) --- doc/src/base/scopedvalues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/base/scopedvalues.md b/doc/src/base/scopedvalues.md index 2991522900e1a..8c3340ab9cf11 100644 --- a/doc/src/base/scopedvalues.md +++ b/doc/src/base/scopedvalues.md @@ -295,6 +295,6 @@ version of Julia. ## Design inspiration This design was heavily inspired by [JEPS-429](https://openjdk.org/jeps/429), -which in turn was inspired by dynamically scoped free variables in many Lisp dialects. In particular Interlisp-D and it's deep binding strategy. +which in turn was inspired by dynamically scoped free variables in many Lisp dialects. In particular Interlisp-D and its deep binding strategy. A prior design discussed was context variables ala [PEPS-567](https://peps.python.org/pep-0567/) and implemented in Julia as [ContextVariablesX.jl](https://github.com/tkf/ContextVariablesX.jl).