The documentation for 1.0.0-rc1 - DynamicRouting, incorrectly states the following signature is used for declaring async routes: ``` getComponents(callback) { require.ensure([], function (require) { callback(null, require('./components/Course')) }) } ``` Looking at `getComponents.js`, the supplied arguments should be `location` then `callback` ``` .... } else if (route.getComponents) { route.getComponents(location, callback); } .... ```