diff --git a/README.md b/README.md
index 9af2760..a05cbf3 100644
--- a/README.md
+++ b/README.md
@@ -5,12 +5,11 @@
```js
const bellows = require('bellows')
```
-
+
-### bellows~bellows([options])
-Generate bellows pattern for cutting and folding.
-
-**Kind**: inner method of [bellows
](#module_bellows)
+### bellows([options]) ⏏
+**Kind**: Exported function
+**Typicalname:bellows**: Generate bellows pattern for cutting and folding.
| Param | Type | Description |
| --- | --- | --- |
@@ -31,8 +30,7 @@ Generate bellows pattern for cutting and folding.
| [options.parts] | Integer
| Number of parts to split pattern into: 1, 2, or 4 returns {String} Base64 encoded png data |
**Example**
-Generate the default square bellows in 2 parts and print the string to the console.
-```
+```js
const b = bellows({ parts : 2 })
console.log(b)
```
diff --git a/src/bellows.js b/src/bellows.js
index fdd863f..71b420a 100644
--- a/src/bellows.js
+++ b/src/bellows.js
@@ -54,6 +54,9 @@ function taper (back, front, length, pos) {
}
/**
+ * @alias module:bellows
+ * @typicalname:bellows
+ *
* Generate bellows pattern for cutting and folding.
*
* @param {Object} [options] Bellows configuration options
@@ -75,8 +78,6 @@ function taper (back, front, length, pos) {
* returns {String} Base64 encoded png data
*
* @example
- * Generate the default square bellows in 2 parts and print the string to the console.
- *
* const b = bellows({ parts : 2 })
* console.log(b)
*/