Skip to content

Commit

Permalink
Fix capitalization in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eileenmcnaughton authored May 11, 2023
1 parent bfb03ca commit dae48fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CRM/Core/Resources/CollectionAdderTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function addMarkup(string $markup, ...$options) {
}

/**
* Add an ECMAScript module (esm) to the current page (<SCRIPT TYPE=MODULE>).
* Add an ECMAScript module (ESM) to the current page (<SCRIPT TYPE=MODULE>).
*
* Ex: addModule('alert("Hello world");', ['weight' => 123]);
*
Expand All @@ -84,7 +84,7 @@ public function addModule(string $code, ...$options) {
}

/**
* Add an ECMAScript Module (esm) from file to the current page (<SCRIPT TYPE=MODULE SRC=...>).
* Add an ECMAScript Module (ESM) from file to the current page (<SCRIPT TYPE=MODULE SRC=...>).
*
* Ex: addModuleFile('myextension', 'myscript.js', ['weight' => 123]);
*
Expand All @@ -111,7 +111,7 @@ public function addModuleFile(string $ext, string $file, ...$options) {
}

/**
* Add an ECMAScript Module (esm) by URL to the current page (<SCRIPT TYPE=MODULE SRC=...>).
* Add an ECMAScript Module (ESM) by URL to the current page (<SCRIPT TYPE=MODULE SRC=...>).
*
* Ex: addModuleUrl('http://example.com/foo.js', ['weight' => 123])
*
Expand Down

0 comments on commit dae48fc

Please sign in to comment.