diff --git a/scripts/docs/templates/common.template.html b/scripts/docs/templates/common.template.html index 124490cde..71b7702e7 100644 --- a/scripts/docs/templates/common.template.html +++ b/scripts/docs/templates/common.template.html @@ -30,7 +30,7 @@ docType: "<$ doc.docType $>" <@ if param.optional @>
(optional)
<@ endif @> - <$ param.returnType | escape $> + <$ param.returnType | escape $> <$ param.description | marked $> @@ -308,13 +308,13 @@ docType: "<$ doc.docType $>" <@ for tag in doc.tags.tags -@> <@ if tag.tagName == 'classes' -@> -

Related Classes

+ <@ set classes = tag.description.split('\n') @> <@ for item in classes -@> <@ if item.length > 1 @> <@ for export in doc.moduleDoc.exports -@> <@ if export.name == item @> -

<$ item $>

+

<$ item $>

<$ documentClass(export) $> <@ endif @> <@- endfor @> @@ -327,11 +327,11 @@ docType: "<$ doc.docType $>" <@ for tag in doc.tags.tags -@> <@ if tag.tagName == 'interfaces' @> -

Interfaces

+ <@ set interfaces = tag.description.split('\n') @> <@ for item in interfaces -@> <@ if item.length > 1 @> -

<$ item $>

+

<$ item $>

<$ interfaceTable(item) $> <@ endif @> <@- endfor @> diff --git a/src/plugins/contacts.ts b/src/plugins/contacts.ts index 0e252a42f..42f7fa917 100644 --- a/src/plugins/contacts.ts +++ b/src/plugins/contacts.ts @@ -260,10 +260,12 @@ export class ContactFindOptions implements IContactFindOptions { * ``` * @interfaces * IContactProperties - * @classes - * ContactFindOptions - * ContactOrganization - * ContactAddress + * IContactError + * IContactName + * IContactField + * IContactAddress + * IContactOrganization + * IContactFindOptions */ @Plugin({ pluginName: 'Contacts', diff --git a/src/plugins/httpd.ts b/src/plugins/httpd.ts index 394b8ab26..59bfbd534 100644 --- a/src/plugins/httpd.ts +++ b/src/plugins/httpd.ts @@ -33,9 +33,8 @@ export class Httpd { /** * Starts a web server. - * @returns {Observable} Returns an Observable. Subscribe to receive the URL for your web server (if succeeded). Unsubscribe to stop the server. * @param options {HttpdOptions} - * @returns {Observable} + * @returns {Observable} Returns an Observable. Subscribe to receive the URL for your web server (if succeeded). Unsubscribe to stop the server. */ @Cordova({ observable: true,