chore: remove alias comments (#6816)

* chore: remove alias comments

* chore: format

* chore: remove extra newlines

* chore: fix bad replaces
This commit is contained in:
Rachel Fenichel
2023-02-06 10:08:55 -08:00
committed by GitHub
parent a96eec8a70
commit 1d1a927628
260 changed files with 0 additions and 937 deletions

View File

@@ -15,7 +15,6 @@ goog.declareModuleId('Blockly.utils.array');
* @param arr Array from which to remove value.
* @param value Value to remove.
* @returns True if an element was removed.
* @alias Blockly.array.removeElem
* @internal
*/
export function removeElem<T>(arr: Array<T>, value: T): boolean {