Skip to content

Commit 88907de

Browse files
authored
Merge pull request #395 from smartdevicelink/bugfix/initalize-typo
Fix initalize typos
2 parents c84d50c + c9e17bf commit 88907de

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

generator/templates/base_struct_function.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{%- endblock %}
1919
{% block body %}
2020
/**
21-
* Initalizes an instance of {{name}}.
21+
* Initializes an instance of {{name}}.
2222
* @class
2323
* @param {object} parameters - An object map of parameters.
2424
{%- if since is defined and since is not none %}

lib/js/src/manager/permission/enums/PermissionGroupStatus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import { Enum } from '../../../util/Enum.js';
3939
*/
4040
class PermissionGroupStatus extends Enum {
4141
/**
42-
* Initalizes an instance of PermissionGroupStatus
42+
* Initializes an instance of PermissionGroupStatus
4343
* @class
4444
*/
4545
constructor () {

lib/js/src/manager/screen/_ScreenManagerBase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { _ChoiceSetManagerBase } from './choiceset/_ChoiceSetManagerBase';
4141

4242
class _ScreenManagerBase extends _SubManagerBase {
4343
/**
44-
* Initalizes an instance of _ScreenManagerBase.
44+
* Initializes an instance of _ScreenManagerBase.
4545
* @class
4646
* @private
4747
* @param {_LifecycleManager} lifecycleManager - An instance of _LifecycleManager.

lib/js/src/protocol/_MessageFrameDisassembler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class _MessageFrameDisassembler {
204204

205205

206206
/**
207-
* Builds consecutive frames after the inital frame is sent for a multi-frame message.
207+
* Builds consecutive frames after the initial frame is sent for a multi-frame message.
208208
* @private
209209
* @param {Number} version - A numeric protocol version.
210210
* @param {ServiceType} serviceType - A ServiceType enum value.

0 commit comments

Comments
 (0)