Skip to content

Commit

Permalink
Fixed JSDoc examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kpal81xd committed Aug 14, 2024
1 parent fb70ca8 commit d4a0654
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schema/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class SettingsSchema {
* @returns {*} The default settings for the project
* @example
* ```javascript
* const modelData = editor.schema.settings.getDefaultProjectSettings();
* const projectSettings = editor.schema.settings.getDefaultProjectSettings();
* ```
*/
getDefaultProjectSettings() {
Expand All @@ -57,7 +57,7 @@ class SettingsSchema {
* @returns {*} The default settings for the user
* @example
* ```javascript
* const modelData = editor.schema.settings.getDefaultUserSettings();
* const userSettings = editor.schema.settings.getDefaultUserSettings();
* ```
*/
getDefaultUserSettings() {
Expand All @@ -70,7 +70,7 @@ class SettingsSchema {
* @returns {*} The default settings for the user in the project
* @example
* ```javascript
* const modelData = editor.schema.settings.getDefaultProjectUserSettings();
* const projectUserSettings = editor.schema.settings.getDefaultProjectUserSettings();
* ```
*/
getDefaultProjectUserSettings() {
Expand Down

0 comments on commit d4a0654

Please sign in to comment.