aboutsummaryrefslogtreecommitdiffstats
path: root/src/Plugin/Factorial.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Plugin/Factorial.hs')
-rw-r--r--src/Plugin/Factorial.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Plugin/Factorial.hs b/src/Plugin/Factorial.hs
index 97730de..796ef14 100644
--- a/src/Plugin/Factorial.hs
+++ b/src/Plugin/Factorial.hs
@@ -14,7 +14,8 @@ factorial = Plugin
{ matchRegex = "^([0-9]+)!$"
, perform = factorialAction
, command = "<integer>!"
- , description = "Calculate the factorial of <integer>"
+ , description = "Calculate the factorial of <integer> for whole numbers \
+ \up to 35000."
}
factorialAction :: PluginAction