diff --git a/README.md b/README.md
index c7faf50d..4435532c 100644
--- a/README.md
+++ b/README.md
@@ -1749,7 +1749,7 @@ Other Style Guides
## Comments
- - [17.1](#comments--multiline) Use `/** ... */` for multi-line comments. Include a description, specify types and values for all parameters and return values.
+ - [17.1](#comments--multiline) Use `/** ... */` for multi-line comments.
```javascript
// bad
@@ -1768,10 +1768,7 @@ Other Style Guides
// good
/**
* make() returns a new element
- * based on the passed in tag name
- *
- * @param {String} tag
- * @return {Element} element
+ * based on the passed-in tag name
*/
function make(tag) {