diff --git a/bin/update-readmes.js b/bin/update-readmes.js
index ce9d702bbbba7..038cfa34c6213 100755
--- a/bin/update-readmes.js
+++ b/bin/update-readmes.js
@@ -21,7 +21,7 @@ const packages = [
//'edit-post',
'element',
'escape-html',
- //'html-entities',
+ 'html-entities',
//'i18n',
//'keycodes',
//'plugins',
diff --git a/packages/html-entities/README.md b/packages/html-entities/README.md
index f86def2a5dcc9..2d13431fa13b4 100644
--- a/packages/html-entities/README.md
+++ b/packages/html-entities/README.md
@@ -12,4 +12,32 @@ npm install @wordpress/html-entities --save
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._
+## API
+
+
+
+### decodeEntities
+
+[src/index.js#L16-L35](src/index.js#L16-L35)
+
+Decodes the HTML entities from a given string.
+
+**Usage**
+
+```js
+const result = decodeEntities( 'á' );
+console.log( result ); // result will be "á"
+```
+
+**Parameters**
+
+- **html** `string`: String that contain HTML entities.
+
+**Returns**
+
+`string`: The decoded string.
+
+
+
+