Skip to content

Commit 7f0b7dc

Browse files
authored
AppSettings: fix javadoc
1 parent 580336e commit 7f0b7dc

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

jme3-core/src/main/java/com/jme3/system/AppSettings.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -754,9 +754,9 @@ public void setUseJoysticks(boolean use) {
754754
/**
755755
* Set the graphics renderer to use, one of:<br>
756756
* <ul>
757-
* <li>AppSettings.LWJGL_OPENGL1 - Force OpenGL1.1 compatability</li>
758-
* <li>AppSettings.LWJGL_OPENGL2 - Force OpenGL2 compatability</li>
759-
* <li>AppSettings.LWJGL_OPENGL3 - Force OpenGL3.3 compatability</li>
757+
* <li>AppSettings.LWJGL_OPENGL1 - Force OpenGL1.1 compatibility</li>
758+
* <li>AppSettings.LWJGL_OPENGL2 - Force OpenGL2 compatibility</li>
759+
* <li>AppSettings.LWJGL_OPENGL3 - Force OpenGL3.3 compatibility</li>
760760
* <li>AppSettings.LWJGL_OPENGL_ANY - Choose an appropriate
761761
* OpenGL version based on system capabilities</li>
762762
* <li>AppSettings.JOGL_OPENGL_BACKWARD_COMPATIBLE</li>
@@ -795,23 +795,23 @@ public void setAudioRenderer(String audioRenderer) {
795795
}
796796

797797
/**
798-
* @param value the width for the default framebuffer.
798+
* @param value the width for the default frame buffer.
799799
* (Default: 640)
800800
*/
801801
public void setWidth(int value) {
802802
putInteger("Width", value);
803803
}
804804

805805
/**
806-
* @param value the height for the default framebuffer.
806+
* @param value the height for the default frame buffer.
807807
* (Default: 480)
808808
*/
809809
public void setHeight(int value) {
810810
putInteger("Height", value);
811811
}
812812

813813
/**
814-
* Set the resolution for the default framebuffer
814+
* Set the resolution for the default frame buffer
815815
* Use {@link #setWindowSize(int, int)} instead, for HiDPI display support.
816816
* @param width The width
817817
* @param height The height
@@ -825,8 +825,8 @@ public void setResolution(int width, int height) {
825825
/**
826826
* Set the size of the window
827827
*
828-
* @param width The width in pixels (default = width of the default framebuffer)
829-
* @param height The height in pixels (default = height of the default framebuffer)
828+
* @param width The width in pixels (default = width of the default frame buffer)
829+
* @param height The height in pixels (default = height of the default frame buffer)
830830
*/
831831
public void setWindowSize(int width, int height) {
832832
putInteger("WindowWidth", width);
@@ -1027,7 +1027,7 @@ public void setGammaCorrection(boolean gammaCorrection) {
10271027
}
10281028

10291029
/**
1030-
* Get the framerate.
1030+
* Get the frame rate.
10311031
*
10321032
* @return the maximum rate (in frames per second), or -1 for unlimited
10331033
* @see #setFrameRate(int)
@@ -1060,7 +1060,7 @@ public String getRenderer() {
10601060
/**
10611061
* Get the width
10621062
*
1063-
* @return the width of the default framebuffer (in pixels)
1063+
* @return the width of the default frame buffer (in pixels)
10641064
* @see #setWidth(int)
10651065
*/
10661066
public int getWidth() {
@@ -1070,7 +1070,7 @@ public int getWidth() {
10701070
/**
10711071
* Get the height
10721072
*
1073-
* @return the height of the default framebuffer (in pixels)
1073+
* @return the height of the default frame buffer (in pixels)
10741074
* @see #setHeight(int)
10751075
*/
10761076
public int getHeight() {

0 commit comments

Comments
 (0)