diff --git a/docs/framework/angular/changeset.md b/docs/framework/angular/changeset.md
index 8f84ba383517b7d874b2a5b6afd736e323ff9fab..a067e4b3dd9afeedde5664cc55ecaf36c0f4cf1f 100644
--- a/docs/framework/angular/changeset.md
+++ b/docs/framework/angular/changeset.md
@@ -19,7 +19,11 @@ independent deployments with independent configurations).
 
 ...
 
-## tldr
+## Hooks
+
+* **[hook_civicrm_alterAngular](/hooks/hook_civicrm_alterAngular.md)** - Alter the definition of some Angular HTML partials.
+
+## Example
 
 ```php
 function mailwords_civicrm_alterAngular(\Civi\Angular\Manager $angular) {
diff --git a/docs/hooks/hook_civicrm_alterAngular.md b/docs/hooks/hook_civicrm_alterAngular.md
new file mode 100644
index 0000000000000000000000000000000000000000..d588f8dc8588311f29fc17abe05f12e171dd9f34
--- /dev/null
+++ b/docs/hooks/hook_civicrm_alterAngular.md
@@ -0,0 +1,29 @@
+# hook_civicrm_alterAngular
+
+## Summary
+
+Alter the definition of some Angular HTML partials; allows the injection of [Changesets](/framework/angular/changeset/).
+
+## Availability
+
+This hook is available in CiviCRM 4.7.21 and later.
+
+## Definition
+
+     hook_civicrm_alterAngular(&$angular)
+
+## Parameters
+
+- array `$angular` - `\Civi\Angular\Manager`
+
+## Example
+
+```php
+function example_civicrm_alterAngular($angular) {
+  $angular->add(\Civi\Angular\ChangeSet::create('mychanges')
+    ->alterHtml('~/crmMailing/EditMailingCtrl/2step.html', function(phpQueryObject $doc) {
+      $doc->find('[ng-form="crmMailingSubform"]')->attr('cat-stevens', 'ts(\'wild world\')');
+    })
+  );
+}
+```