Fix typo. Add second star to the beginning of jsdoc block. (#2085)

Change this
```js
/*
 * @alias Foo.bar
 * @name Foo.bar
 */
```
to this
```js
/**
 * @alias Foo.bar
 * @name Foo.bar
 */
```

Co-authored-by: Rico Sta. Cruz <rstacruz@users.noreply.github.com>
This commit is contained in:
luka598 2024-03-29 08:48:15 +01:00 committed by GitHub
parent 9ef88ffade
commit ba20f0bf67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ See the full list: <https://jsdoc.app/index.html#block-tags>
### Renaming
```js
/*
/**
* @alias Foo.bar
* @name Foo.bar
*/