Skip to content

Commit c9e17bf

Browse files
committed
Fix initalize typos
1 parent ec4bf9a commit c9e17bf

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

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
@@ -39,7 +39,7 @@ import { _ChoiceSetManagerBase } from './choiceset/_ChoiceSetManagerBase';
3939

4040
class _ScreenManagerBase extends _SubManagerBase {
4141
/**
42-
* Initalizes an instance of _ScreenManagerBase.
42+
* Initializes an instance of _ScreenManagerBase.
4343
* @class
4444
* @private
4545
* @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)