Skip to content
Merged
Show file tree
Hide file tree
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
Fix initalize typos
  • Loading branch information
renonick87 committed Mar 5, 2021
commit c9e17bf7a5eb0ee7a6ad6f9ebaebdf48659cfeae
2 changes: 1 addition & 1 deletion generator/templates/base_struct_function.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{%- endblock %}
{% block body %}
/**
* Initalizes an instance of {{name}}.
* Initializes an instance of {{name}}.
* @class
* @param {object} parameters - An object map of parameters.
{%- if since is defined and since is not none %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { Enum } from '../../../util/Enum.js';
*/
class PermissionGroupStatus extends Enum {
/**
* Initalizes an instance of PermissionGroupStatus
* Initializes an instance of PermissionGroupStatus
* @class
*/
constructor () {
Expand Down
2 changes: 1 addition & 1 deletion lib/js/src/manager/screen/_ScreenManagerBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { _ChoiceSetManagerBase } from './choiceset/_ChoiceSetManagerBase';

class _ScreenManagerBase extends _SubManagerBase {
/**
* Initalizes an instance of _ScreenManagerBase.
* Initializes an instance of _ScreenManagerBase.
* @class
* @private
* @param {_LifecycleManager} lifecycleManager - An instance of _LifecycleManager.
Expand Down
2 changes: 1 addition & 1 deletion lib/js/src/protocol/_MessageFrameDisassembler.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class _MessageFrameDisassembler {


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