Skip to content

Commit b590f0d

Browse files
committed
spelling: settings
Signed-off-by: Josh Soref <[email protected]>
1 parent 85b0381 commit b590f0d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

visualvm/libs.profiler/lib.profiler.common/src/org/graalvm/visualvm/lib/common/ProfilingSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public class ProfilingSettings {
9191
public static final String PROP_WORKING_DIR = "profiler.settings.override.working.dir"; //NOI18N
9292
public static final String PROP_JVM_ARGS = "profiler.settings.override.jvm.args"; //NOI18N
9393
public static final String PROP_JAVA_PLATFORM = "profiler.settings.override.java.platform"; //NOI18N
94-
public static final String PROP_IS_PRESET = "profiler.settigns.ispreset"; // NOI18N
94+
public static final String PROP_IS_PRESET = "profiler.settings.ispreset"; // NOI18N
9595
public static final String PROP_SETTINGS_NAME = "profiler.settings.settings.name"; //NOI18N
9696
public static final String PROP_PROFILING_TYPE = "profiler.settings.profiling.type"; //NOI18N
9797
public static final String PROP_THREADS_MONITORING_ENABLED = "profiler.settings.threads.monitoring.enabled"; //NOI18N

visualvm/libs.profiler/lib.profiler/src/org/graalvm/visualvm/lib/jfluid/client/ClientUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public SourceCodeSelection(int specialCode) {
101101
// "Instrument all spawned threads" profiling mode. The "run()" method of all threads started after
102102
// the "instrument" command is issued, is instrumented - but NOT the main() method. The intended usage
103103
// of this mode is when JFluid is attached to an already running app. Otherwise, one should set the
104-
// main method as a root, and call GlobalSettins.setInstrumentSpawnedThreads(true) explicitly.
104+
// main method as a root, and call GlobalSettings.setInstrumentSpawnedThreads(true) explicitly.
105105
className = NO_CLASS_NAME;
106106
methodName = NO_METHOD_NAME;
107107
methodSignature = NO_METHOD_SIGNATURE;

visualvm/libs.profiler/profiler/src/org/graalvm/visualvm/lib/profiler/v2/impl/WelcomePanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
*/
6767
@NbBundle.Messages({
6868
"WelcomePanel_howtoCaption=Configure and Start Profiling",
69-
"WelcomePanel_clickForSetings=Click the {0} button in toolbar and select the desired profiling mode:",
69+
"WelcomePanel_clickForSettings=Click the {0} button in toolbar and select the desired profiling mode:",
7070
"WelcomePanel_startProfiling=Click the {0} button in toolbar once the session is configured to start profiling.",
7171
"WelcomePanel_modifyProfiling=Use the {0} <b>dropdown arrow</b> to change profiling settings for the session."
7272
})
@@ -99,7 +99,7 @@ public WelcomePanel(String configureButton, String profileButton, Set<ProfilerFe
9999

100100
int counter = 0;
101101

102-
Paragraph hint1 = new Paragraph(Bundle.WelcomePanel_clickForSetings("<b><a href='#'>" + configureButton + "</a></b>"), Integer.toString(++counter), 1, background) { // NOI18N
102+
Paragraph hint1 = new Paragraph(Bundle.WelcomePanel_clickForSettings("<b><a href='#'>" + configureButton + "</a></b>"), Integer.toString(++counter), 1, background) { // NOI18N
103103
protected void showURL(URL url) { highlightItem(null); }
104104
};
105105
c = new GridBagConstraints();

0 commit comments

Comments
 (0)