Skip to content

Commit fbe9aca

Browse files
committed
typo fixed
1 parent 1af291d commit fbe9aca

File tree

46 files changed

+79
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+79
-79
lines changed

visualvm/host/src/org/graalvm/visualvm/host/HostsSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Host createHost(HostProperties properties, boolean createOnly, boolean interacti
103103
/**
104104
* Returns already known Host instance with the same InetAddress or null.
105105
*
106-
* @param inetAddress InetAddess to search.
106+
* @param inetAddress InetAddress to search.
107107
* @return already known Host instance with the same InetAddress or null.
108108
*/
109109
public Host getHostByAddress(InetAddress inetAddress) {

visualvm/host/src/org/graalvm/visualvm/host/impl/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ LBL_Host_name=&Host name\:
2828

2929
LBL_Display_name=&Display name\:
3030

31-
BTN_AdavancedSettings=&Advanced Settings
31+
BTN_AdvancedSettings=&Advanced Settings
3232

3333
LBL_OK=OK
3434

visualvm/host/src/org/graalvm/visualvm/host/impl/HostCustomizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ protected void fireActionPerformed(ActionEvent e) {
295295
}
296296
};
297297
Mnemonics.setLocalizedText(settingsButton, NbBundle.getMessage(
298-
HostCustomizer.class, "BTN_AdavancedSettings")); // NOI18N
298+
HostCustomizer.class, "BTN_AdvancedSettings")); // NOI18N
299299

300300
// UI tweaks
301301
displaynameCheckbox.setBorder(hostnameLabel.getBorder());

visualvm/jfr.jdk11/src/org/graalvm/visualvm/jfr/jdk11/model/impl/DisplayableSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ final class DisplayableSupport {
6868
new TimestampFormatProcessor(),
6969
new TimespanFormatProcessor(),
7070
new MemoryAddressFormatProcessor(),
71-
new FrequencyFormatProcessor(), // must be before DataAmoutFormatProcessor!
71+
new FrequencyFormatProcessor(), // must be before DataAmountFormatProcessor!
7272
new PercentFormatProcessor(),
7373
new DataAmountFormatProcessor(), // must be the last item!
7474
};

visualvm/libs.profiler/lib.profiler.charts/src/org/graalvm/visualvm/lib/charts/xy/synchronous/SynchronousXYChart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private int[] findLastVisibleR(int[] startIndex, int viewStart, int viewEnd) {
211211
}
212212

213213
// Use in case of absolute panic, will always work
214-
// Note: doesn't clear cache, indexesCache.clear() must be invoked explicitely
214+
// Note: doesn't clear cache, indexesCache.clear() must be invoked explicitly
215215
private void recomputeVisibleBounds() {
216216
int timestampsCount = timeline.getTimestampsCount();
217217
if (timestampsCount == 0) {

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/LiveResultsPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public interface LiveResultsPanel {
4545

4646
/**
4747
* Called when auto refresh is on and profiling session will finish
48-
* to give the panel chance to do some cleanup before asynchrounous
48+
* to give the panel chance to do some cleanup before asynchronous
4949
* call to updateLiveResults() will happen.
5050
*
5151
* Here the context menu should be closed if open, otherwise it

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/components/AnimatedContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131

3232
/**
33-
* A container for two contents that are animated in traansition between them.
33+
* A container for two contents that are animated in transition between them.
3434
*
3535
* @author Vlada Nemec
3636
*/

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/components/Animator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class Animator implements ActionListener {
3838
//~ Static fields/initializers -----------------------------------------------------------------------------------------------
3939

4040
private static final int STEPS = 5;
41-
private static final int DURATION = 100; //miliseconds
41+
private static final int DURATION = 100; //milliseconds
4242

4343
//~ Instance fields ----------------------------------------------------------------------------------------------------------
4444

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/components/EqualFlowLayout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private static int getMaximumWidth(Container target) {
241241
* @param width the width dimensions
242242
* @param height the height dimensions
243243
* @param rowStart the beginning of the row
244-
* @param rowEnd the the ending of the row
244+
* @param rowEnd the ending of the row
245245
*/
246246
private void moveComponents2(Container target, int x, int y, int width, int height, int rowStart, int rowEnd) {
247247
synchronized (target.getTreeLock()) {

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/components/FlatToolBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
119119
g.translate(x, y);
120120

121121
if ((model.isPressed() && model.isArmed()) || model.isSelected()) {
122-
// Draw the pressd button
122+
// Draw the pressed button
123123
g.setColor(pressed);
124124
g.drawRect(0, 0, w - 1, h - 1);
125125
} else {

0 commit comments

Comments
 (0)