aboutsummaryrefslogtreecommitdiff
path: root/spark-common/src
diff options
context:
space:
mode:
authorSimon Gardling <Titaniumtown@gmail.com>2021-02-04 13:19:47 -0500
committerGitHub <noreply@github.com>2021-02-04 18:19:47 +0000
commitc8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f (patch)
tree3ff57442e5fe1e9dddbb75bfd67ca98ef8c367c9 /spark-common/src
parent6f6b0b03ae447906574b9b30b957a5e25650315a (diff)
downloadspark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.tar.gz
spark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.tar.bz2
spark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.zip
fix typo in SamplerModule.java (#97)
Diffstat (limited to 'spark-common/src')
-rw-r--r--spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java b/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java
index d9d8b44..eb77b24 100644
--- a/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java
+++ b/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java
@@ -208,7 +208,7 @@ public class SamplerModule implements CommandModule {
resp.broadcastPrefixed(text("Profiler now active!", GOLD));
if (timeoutSeconds == -1) {
- resp.broadcastPrefixed(text("Use '/" + platform.getPlugin().getCommandName() + " sampler --stop' to stop profiling and upload the results."));
+ resp.broadcastPrefixed(text("Use '/" + platform.getPlugin().getCommandName() + " profiler --stop' to stop profiling and upload the results."));
} else {
resp.broadcastPrefixed(text("The results will be automatically returned after the profiler has been running for " + timeoutSeconds + " seconds."));
}