From ad0fc7ed60edbebfa5d66af3980210254bcfaee2 Mon Sep 17 00:00:00 2001 From: Ryan Whitmire Date: Thu, 17 Mar 2016 22:42:21 -0400 Subject: [PATCH] fix broken link in mithril.deps.md --- docs/mithril.deps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mithril.deps.md b/docs/mithril.deps.md index e561270e..ff4fbaa2 100644 --- a/docs/mithril.deps.md +++ b/docs/mithril.deps.md @@ -7,7 +7,7 @@ --- -This function overwrites the reference to the `window` object that is used internally by Mithril. It is useful for injecting a mock `window` dependency for the purposes of testing and for running Mithril in non-browser environments. The mock object used by Mithril for its own test suite [can be found in the development repo](https://github.com/lhorie/mithril.js/blob/next/tests/mock.js). +This function overwrites the reference to the `window` object that is used internally by Mithril. It is useful for injecting a mock `window` dependency for the purposes of testing and for running Mithril in non-browser environments. The mock object used by Mithril for its own test suite [can be found in the development repo](https://github.com/lhorie/mithril.js/blob/next/test-deps/mock.js). By default, Mithril uses `window` itself as the dependency. Note that Mithril only uses the mock object for browser APIs such as the DOM API and `requestAnimationFrame`, but relies on the environment for ECMAScript features like `Object.keys`.