diff --git a/doc/implementation-notes.md b/doc/implementation-notes.md index af779c38..f08cf52a 100644 --- a/doc/implementation-notes.md +++ b/doc/implementation-notes.md @@ -68,7 +68,7 @@ testing. All such query parameters are documented in **Memory management**: The model exists for the lifetime of the simulation. Large portions of the view are reconstructed when the selected item changes. So `dispose` is implemented throughout, and all function calls that register an observer have an associated comment indicating whether a corresponding de-register call is -required. For example, in `CostNode`: +required. For example, here's the general pattern used in `CostNode`: ```js var costObserver = function( cost ) {...};