From 128d4ffb882599a5537af480c422144001ba6267 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 2 Jan 2020 07:10:28 +1100 Subject: [PATCH] Fix simple typo: wich -> which Closes #297 --- pattern/graph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pattern/graph/__init__.py b/pattern/graph/__init__.py index 85411b8e..ea0a916b 100644 --- a/pattern/graph/__init__.py +++ b/pattern/graph/__init__.py @@ -1359,7 +1359,7 @@ def _rgba(self, clr): def data(self): """ Yields a string of Javascript code that loads the nodes and edges into variable g, which is a Javascript Graph object (see graph.js). - This can be the response of an XMLHttpRequest, after wich you move g into your own variable. + This can be the response of an XMLHttpRequest, after which you move g into your own variable. """ return "".join(self._data())