From 4048476e966589d28e5e796b435f23c920e0f6a3 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Mon, 17 Feb 2020 08:56:23 -0800 Subject: [PATCH] Typofix --- text/0000-use-mutable-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-use-mutable-source.md b/text/0000-use-mutable-source.md index a5fa55c0..c5e75d84 100644 --- a/text/0000-use-mutable-source.md +++ b/text/0000-use-mutable-source.md @@ -57,7 +57,7 @@ const locationSource = createMutableSource(window, { // Because this method doesn't require access to props, // it can be declared in module scope to be shared between components. -const getSnapshot = window => win.location.pathname; +const getSnapshot = window => window.location.pathname; // This method can subscribe to root level change events, // or more snapshot-specific events.