Remove duplicated 'cost' keyword for RAM cost.

Only some of the entries had this, so I assume they were introduced by a bad find & replace.
This commit is contained in:
Martin Fournier 2022-01-16 10:51:34 -05:00
parent 8b69fd7faa
commit 739294da1d

@ -3932,7 +3932,7 @@ interface Stanek {
/** /**
* List possible fragments. * List possible fragments.
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
* *
* @returns List of possible fragments. * @returns List of possible fragments.
*/ */
@ -3941,7 +3941,7 @@ interface Stanek {
/** /**
* List of fragments in Stanek's Gift. * List of fragments in Stanek's Gift.
* @remarks * @remarks
* RAM cost: cost: 5 GB * RAM cost: 5 GB
* *
* @returns List of active fragments placed on Stanek's Gift. * @returns List of active fragments placed on Stanek's Gift.
*/ */
@ -3950,14 +3950,14 @@ interface Stanek {
/** /**
* Clear the board of all fragments. * Clear the board of all fragments.
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
*/ */
clear(): void; clear(): void;
/** /**
* Check if fragment can be placed at specified location. * Check if fragment can be placed at specified location.
* @remarks * @remarks
* RAM cost: cost: 0.5 GB * RAM cost: 0.5 GB
* *
* @param rootX - rootX Root X against which to align the top left of the fragment. * @param rootX - rootX Root X against which to align the top left of the fragment.
* @param rootY - rootY Root Y against which to align the top left of the fragment. * @param rootY - rootY Root Y against which to align the top left of the fragment.
@ -3969,7 +3969,7 @@ interface Stanek {
/** /**
* Place fragment on Stanek's Gift. * Place fragment on Stanek's Gift.
* @remarks * @remarks
* RAM cost: cost: 5 GB * RAM cost: 5 GB
* *
* @param rootX - X against which to align the top left of the fragment. * @param rootX - X against which to align the top left of the fragment.
* @param rootY - Y against which to align the top left of the fragment. * @param rootY - Y against which to align the top left of the fragment.
@ -3981,7 +3981,7 @@ interface Stanek {
/** /**
* Get placed fragment at location. * Get placed fragment at location.
* @remarks * @remarks
* RAM cost: cost: 5 GB * RAM cost: 5 GB
* *
* @param rootX - X against which to align the top left of the fragment. * @param rootX - X against which to align the top left of the fragment.
* @param rootY - Y against which to align the top left of the fragment. * @param rootY - Y against which to align the top left of the fragment.
@ -3992,7 +3992,7 @@ interface Stanek {
/** /**
* Remove fragment at location. * Remove fragment at location.
* @remarks * @remarks
* RAM cost: cost: 0.15 GB * RAM cost: 0.15 GB
* *
* @param rootX - X against which to align the top left of the fragment. * @param rootX - X against which to align the top left of the fragment.
* @param rootY - Y against which to align the top left of the fragment. * @param rootY - Y against which to align the top left of the fragment.
@ -4009,7 +4009,7 @@ interface UserInterface {
/** /**
* Get the current theme * Get the current theme
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
* *
* @returns An object containing the theme's colors * @returns An object containing the theme's colors
*/ */
@ -4018,7 +4018,7 @@ interface UserInterface {
/** /**
* Sets the current theme * Sets the current theme
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
* @example * @example
* Usage example (NS2) * Usage example (NS2)
* ```ts * ```ts
@ -4032,14 +4032,14 @@ interface UserInterface {
/** /**
* Resets the player's theme to the default values * Resets the player's theme to the default values
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
*/ */
resetTheme(): void; resetTheme(): void;
/** /**
* Get the current styles * Get the current styles
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
* *
* @returns An object containing the player's styles * @returns An object containing the player's styles
*/ */
@ -4048,7 +4048,7 @@ interface UserInterface {
/** /**
* Sets the current styles * Sets the current styles
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
* @example * @example
* Usage example (NS2) * Usage example (NS2)
* ```ts * ```ts
@ -4062,7 +4062,7 @@ interface UserInterface {
/** /**
* Resets the player's styles to the default values * Resets the player's styles to the default values
* @remarks * @remarks
* RAM cost: cost: 0 GB * RAM cost: 0 GB
*/ */
resetStyles(): void; resetStyles(): void;
} }