diff --git a/docs/api-output.md b/docs/api-output.md
index 9dbd7669..b38b011f 100644
--- a/docs/api-output.md
+++ b/docs/api-output.md
@@ -22,7 +22,7 @@ A `Promise` is returned when `callback` is not provided.
| Param | Type | Description |
| --- | --- | --- |
| fileOut | string | the path to write the image data to. |
-| [callback] | function | called on completion with two arguments `(err, info)`. `info` contains the output image `format`, `size` (bytes), `width`, `height`, `channels` and `premultiplied` (indicating if premultiplication was used). When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`. May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text. |
+| [callback] | function | called on completion with two arguments `(err, info)`. `info` contains the output image `format`, `size` (bytes), `width`, `height`, `channels` and `premultiplied` (indicating if premultiplication was used). When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`. When using the attention crop strategy also contains `attentionX` and `attentionY`, the focal point of the cropped region. May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text. |
**Example**
```js
diff --git a/docs/changelog.md b/docs/changelog.md
index 8fd6c306..40ae1531 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -25,6 +25,10 @@ Requires libvips v8.14.0
* Prebuilt binaries: prevent use of glib slice allocator, improves QEMU support.
[#3448](https://github.com/lovell/sharp/issues/3448)
+* Add focus point coordinates to output when using attention based crop.
+ [#3470](https://github.com/lovell/sharp/pull/3470)
+ [@ejoebstl](https://github.com/ejoebstl)
+
* Reduce sharpen `sigma` maximum from 10000 to 10.
[#3521](https://github.com/lovell/sharp/issues/3521)
diff --git a/docs/humans.txt b/docs/humans.txt
index 54d92737..d43e700e 100644
--- a/docs/humans.txt
+++ b/docs/humans.txt
@@ -263,3 +263,6 @@ GitHub: https://github.com/antonmarsden
Name: Marcos Casagrande
GitHub: https://github.com/marcosc90
+
+Name: Emanuel Jöbstl
+GitHub: https://github.com/ejoebstl
diff --git a/lib/output.js b/lib/output.js
index e19971e9..21881eb6 100644
--- a/lib/output.js
+++ b/lib/output.js
@@ -61,7 +61,7 @@ const bitdepthFromColourCount = (colours) => 1 << 31 - Math.clz32(Math.ceil(Math
* `info` contains the output image `format`, `size` (bytes), `width`, `height`,
* `channels` and `premultiplied` (indicating if premultiplication was used).
* When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`.
- * When using attention as crop strategy also contains the center of the cropped region in the fields `attentionX` and `attentionY`.
+ * When using the attention crop strategy also contains `attentionX` and `attentionY`, the focal point of the cropped region.
* May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text.
* @returns {Promise