summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2019-02-12 12:43:44 -0500
committerJosh Soref <jsoref@users.noreply.github.com>2019-02-12 12:43:44 -0500
commit5c97af004d496c6d281d2bd8db0c5b648d478825 (patch)
treeb2eed76d4029219c88914c7405d784be0f70b0ed
parent565b27e403571c307f568f691fcc8275a662e730 (diff)
downloadrabbitmq-server-git-5c97af004d496c6d281d2bd8db0c5b648d478825.tar.gz
spelling: float
-rw-r--r--priv/schema/rabbit.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index eca45f5927..2617f558f7 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -1530,7 +1530,7 @@ fun(Size) when is_integer(Size) ->
Size > 0 andalso Size < 536870912
end}.
-{validator, "less_than_1", "Flooat is not between 0 and 1",
+{validator, "less_than_1", "Float is not between 0 and 1",
fun(Float) when is_float(Float) ->
Float > 0 andalso Float < 1
end}.