spelling: greater

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 08:12:22 -04:00
committed by Jindra Petřík
parent a97d5585f0
commit f2152e53c4
2 changed files with 3 additions and 3 deletions

View File

@@ -198,7 +198,7 @@ public class SwfVsCodeExporter {
" \n" +
" <!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade. \n" +
" Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.\n" +
" An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . -->\n" +
" An updated version of application must have a versionNumber value greater than the previous version. Required for namespace >= 2.5 . -->\n" +
" <versionNumber>1.0.0</versionNumber>\n" +
" \n" +
" <!-- A string value (such as \"v1\", \"2.5\", or \"Alpha 1\") that represents the version of the application, as it should be shown to users. Optional. -->\n" +

View File

@@ -52,8 +52,8 @@ public abstract class SoundStreamHeadTypeTag extends Tag implements CharacterIdT
public abstract List<SoundStreamFrameRange> getRanges();
/**
* Checks if the MP3 sound is higher than 160 kbps.
* @return True if the MP3 sound is higher than 160 kbps, false otherwise
* Checks if the MP3 sound is greater than 160 kbps.
* @return True if the MP3 sound is greater than 160 kbps, false otherwise
*/
protected boolean isMp3HigherThan160Kbps() {
List<SoundStreamFrameRange> ranges = getRanges();