Skip to content

Commit ee2da50

Browse files
Fix PR comments
1 parent 47e9949 commit ee2da50

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,20 @@ Library that helps identifying if the environment can be used for development of
5050
* Describes warning returned from nativescript-doctor check.
5151
*/
5252
interface IWarning {
53-
/** The warning.
53+
/**
54+
* The warning.
5455
* @type {string}
5556
*/
5657
warning: string;
5758

58-
/** Additional information for the warning.
59+
/**
60+
* Additional information for the warning.
5961
* @type {string}
6062
*/
6163
additionalInformation: string;
6264

63-
/** The platforms which are affected by this warning.
65+
/**
66+
* The platforms which are affected by this warning.
6467
* @type {string[]}
6568
*/
6669
platforms: string[];

typings/interfaces.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,17 +282,20 @@ declare module NativeScriptDoctor {
282282
* Describes warning returned from nativescript-doctor check.
283283
*/
284284
interface IWarning {
285-
/** The warning.
285+
/**
286+
* The warning.
286287
* @type {string}
287288
*/
288289
warning: string;
289290

290-
/** Additional information for the warning.
291+
/**
292+
* Additional information for the warning.
291293
* @type {string}
292294
*/
293295
additionalInformation: string;
294296

295-
/** The platforms which are affected by this warning.
297+
/**
298+
* The platforms which are affected by this warning.
296299
* @type {string[]}
297300
*/
298301
platforms: string[];

0 commit comments

Comments
 (0)