Improve docs and naming for MdModulesNotifiers
[alexxy/gromacs.git] / docs / doxygen / lib / mdmodules.md
index 9d6ea6bf9c54bc48a390687c3365f46c11dac6b8..f0f36441d63f744326ed78bdaa11f1899eecb896 100644 (file)
@@ -162,17 +162,17 @@ and local atom sets by subscribing to callback functions.
 To include a notification for your module
 
 * Add the function signature for the callback function to the
-  `MdModulesNotifier` in `mdmodulenotification.h`,
+  `MDModulesNotifiers` in `mdmodulenotification.h`,
 
   ```C++
-    registerMdModulesNotification<...,
+    BuildMDModulesNotifier<...,
                       YourCallbackSignature,
                       ...,
   ```
 
   (keep alphabetical order for ease of git merge)
 
-* Hand the notifier_ member of the MdModules Implementation class to your
+* Hand the notifier_ member of the MDModules Implementation class to your
   builder createYourModule(&notifier_)
 
 * Add the function you want to subscribe with in the builder,