Skip to content

Typo on #428 & #613 #3914

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PublicAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ tns.projectDataService.getAssetsStructure({ projectDir: "/Users/username/myNativ
```

### getIOSAssetsStructure
Gives information about the assets structure for iOS .The returned object will contain icons, splashBackgrounds, splashCenterImages and splashImages.
Gives information about the assets structure for iOS. The returned object will contain icons, splashBackgrounds, splashCenterImages and splashImages.
* Definition:
```TypeScript
/**
Expand All @@ -256,7 +256,7 @@ tns.projectDataService.getIOSAssetsStructure({ projectDir: "/Users/username/myNa
```

### getAndroidAssetsStructure
Gives information about the assets structure for Android .The returned object will contain icons, splashBackgrounds and splashCenterImages.
Gives information about the assets structure for Android. The returned object will contain icons, splashBackgrounds and splashCenterImages.
* Definition:
```TypeScript
/**
Expand Down Expand Up @@ -425,7 +425,7 @@ interface IConfigurationSettings {
* Definition:
```TypeScript
/**
* Describes service used to confugure various settings.
* Describes service used to configure various settings.
*/
interface ISettingsService {
/**
Expand Down Expand Up @@ -610,7 +610,7 @@ The returned Promise will be rejected in case any error occurs. It will also be
/**
* Starts debug operation based on the specified debug data.
* @param {IDebugData} debugData Describes information for device and application that will be debugged.
* @param {IDebugOptions} debugOptions Describe possible options to modify the behaivor of the debug operation, for example stop on the first line.
* @param {IDebugOptions} debugOptions Describe possible options to modify the behavior of the debug operation, for example stop on the first line.
* @returns {Promise<IDebugInformation>} Device Identifier, full url and port where the frontend client can be connected.
*/
debug(debugData: IDebugData, debugOptions: IDebugOptions): Promise<IDebugInformation>;
Expand Down