Consistently use string for string data types in JSDoc comments

Sometimes we also used `String`, but `string` is the what the JSDoc
documentation recommends.
This commit is contained in:
Tim van der Meij 2019-10-12 15:59:09 +02:00
parent e75991b49e
commit efd331daa1
No known key found for this signature in database
GPG key ID: 8C3FD2925A5F2762
6 changed files with 13 additions and 13 deletions

View file

@ -764,7 +764,7 @@ let PDFViewerApplication = {
/**
* Show the error box.
* @param {String} message A message that is human readable.
* @param {string} message A message that is human readable.
* @param {Object} moreInfo (optional) Further information about the error
* that is more technical. Should have a 'message'
* and optionally a 'stack' property.