Skip to content
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

Fix initalize typos #395

Merged
merged 1 commit into from
Mar 5, 2021
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
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