diff --git a/src/containers/turbo-mode.jsx b/src/containers/turbo-mode.jsx
index bde228adeb834595b99cfbc8fae422eb1043cca4..f7ee5878e956c4e6cbec6e255a0a447562832962 100644
--- a/src/containers/turbo-mode.jsx
+++ b/src/containers/turbo-mode.jsx
@@ -7,7 +7,7 @@ import {connect} from 'react-redux';
  * Turbo Mode component passes toggleTurboMode function to its child.
  * It also includes `turboMode` in the props passed to the children.
  * It expects this child to be a function with the signature
- *     function (turboMode, toggleTurboMode, props) {}
+ *     function (toggleTurboMode, {turboMode, ...props}) {}
  * The component can then be used to attach turbo mode setting functionality
  * to any other component:
  *