Skip to content

Commit

Permalink
docs: wording
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed May 27, 2024
1 parent 2fbecf7 commit 19f6a79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/client/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class Client {

/**
* The `init` method is part of the initialization lifecycle of the `soundworks`
* client. Most of the time, the `init` method will be implicitly called by the
* client. Most of the time, this method will be implicitly executed by the
* {@link Client#start} method.
*
* In some situations you might want to call this method manually, in such cases
Expand Down Expand Up @@ -359,8 +359,8 @@ class Client {

/**
* The `start` method is part of the initialization lifecycle of the `soundworks`
* client. The `start` method will implicitly call the {@link Client#init}
* method if it has not been called manually.
* client. This method will implicitly execute {@link Client#init} method if it
* has not been called manually.
*
* What it does:
* - implicitly call {@link Client#init} if not done manually
Expand Down
4 changes: 2 additions & 2 deletions src/common/BasePluginManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ class BasePluginManager {
*
* @param {string} id - Unique id of the plugin. Enables the registration of the
* same plugin factory under different ids.
* @param {Function} factory - Factory function that returns the Plugin class.
* @param {Function} ctor - The class returned by the plugin factory method.
* @param {object} [options={}] - Options to configure the plugin.
* @param {array} [deps=[]] - List of plugins' names the plugin depends on, i.e.
* the plugin initialization will start only after the plugins it depends on are
* the plugin initialization will begin only after the plugins it depends on are
* fully started themselves.
* @see {@link ClientPluginManager#register}
* @see {@link ServerPluginManager#register}
Expand Down

0 comments on commit 19f6a79

Please sign in to comment.