diff options
author | Simon Gardling <Titaniumtown@gmail.com> | 2021-02-04 13:19:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 18:19:47 +0000 |
commit | c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f (patch) | |
tree | 3ff57442e5fe1e9dddbb75bfd67ca98ef8c367c9 /spark-common | |
parent | 6f6b0b03ae447906574b9b30b957a5e25650315a (diff) | |
download | spark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.tar.gz spark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.tar.bz2 spark-c8f4fe1c2d5832b495d1f815ebc1e60ce9949d8f.zip |
fix typo in SamplerModule.java (#97)
Diffstat (limited to 'spark-common')
-rw-r--r-- | spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java | 2 |
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.")); } |