diff --git a/src/dbp-signature-lit-element.js b/src/dbp-signature-lit-element.js
index 46d10b397bda1765170c4dde2151316fccbf3162..2fc408d8921283259fc1ebb28573e1cbab5eca4e 100644
--- a/src/dbp-signature-lit-element.js
+++ b/src/dbp-signature-lit-element.js
@@ -54,10 +54,8 @@ export default class DBPSignatureLitElement extends BaseLitElement {
     }
 
     /**
-     * 
      * @param {*} key 
      * @param {*} name 
-     * @returns shows PdfAnnotationView
      */
     async showAnnotationView(key, name) {
 
@@ -206,7 +204,7 @@ export default class DBPSignatureLitElement extends BaseLitElement {
      * Checks if annotations are enabled for an annotation key
      *
      * @param key
-     * @returns {boolean}
+     * @returns {boolean} true if annotations are enabled for annotation key
      */
     isAnnotationsEnabledForKey(key) {
         return this.queuedFilesEnabledAnnotations.includes(key);
diff --git a/src/ext-sign-iframe.js b/src/ext-sign-iframe.js
index 62b5e61b5e0b5b048c57f548ec72d91b5d6da556..8fa77ba8ffb9553a65c1f2b393a1da7fa82ddbe8 100644
--- a/src/ext-sign-iframe.js
+++ b/src/ext-sign-iframe.js
@@ -7,8 +7,8 @@ import {ScopedElementsMixin} from '@open-wc/scoped-elements';
  * Set the URL via setUrl(), reset via reset().
  * 
  * Emits two custom events:
- *  * signature-error with a "message"
- *  * signature-done with an "id"
+ *  signature-error with a "message"
+ *  signature-done with an "id"
  */
 export class ExternalSignIFrame extends ScopedElementsMixin(LitElement) {
 
diff --git a/src/utils.js b/src/utils.js
index 16dc508e811fdb45fe98af7791a5c6d750709ee8..890062d3fe8996b4ff5747733d61eaf71b94fd25 100644
--- a/src/utils.js
+++ b/src/utils.js
@@ -269,7 +269,7 @@ export const getAnnotationTypes = (key = null) => {
  *
  * @param selectedKey
  * @param lang
- * * @returns {*[]} Array of html templates
+ * @returns {*[]} Array of html templates
  */
 export const getAnnotationTypeSelectOptionsHtml = (selectedKey, lang) => {
     const annotationTypes = getAnnotationTypes();