Skip to content

Commit

Permalink
Fix typo. Add second star to the beginning of jsdoc block. (#2085)
Browse files Browse the repository at this point in the history
Change this
```js
/*
 * @alias Foo.bar
 * @name Foo.bar
 */
```
to this
```js
/**
 * @alias Foo.bar
 * @name Foo.bar
 */
```

Co-authored-by: Rico Sta. Cruz <[email protected]>
  • Loading branch information
luka598 and rstacruz authored Mar 29, 2024
1 parent 9ef88ff commit ba20f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsdoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ See the full list: <https://jsdoc.app/index.html#block-tags>
### Renaming

```js
/*
/**
* @alias Foo.bar
* @name Foo.bar
*/
Expand Down

0 comments on commit ba20f0b

Please sign in to comment.