summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/util/validators.rb
diff options
context:
space:
mode:
authorvzvu3k6k <[email protected]>2019-10-25 00:59:55 +0900
committerStefan Daschek <[email protected]>2019-10-29 01:42:00 +0100
commitc886ae136a947d8c0b2910ece73e553f603d48e2 (patch)
treee5aa63180c62ba405141539bf56a797c3478cfd3 /lib/axlsx/util/validators.rb
parenteaa635a3e4a519556d9e6fe0191afba9aa9125d7 (diff)
downloadcaxlsx-c886ae136a947d8c0b2910ece73e553f603d48e2.tar.gz
caxlsx-c886ae136a947d8c0b2910ece73e553f603d48e2.zip
Remove a typo from comment
Fixnum is removed by 12d6433, but this typo was remained.
Diffstat (limited to 'lib/axlsx/util/validators.rb')
-rw-r--r--lib/axlsx/util/validators.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/util/validators.rb b/lib/axlsx/util/validators.rb
index 71652ef2..76ee2250 100644
--- a/lib/axlsx/util/validators.rb
+++ b/lib/axlsx/util/validators.rb
@@ -92,7 +92,7 @@ module Axlsx
# Requires that the value is a Integer or Float and is greater or equal to 0
# @param [Any] v The value validated
- # @raise [ArgumentError] raised if the value is not a Fixnun, Integer, Float value greater or equal to 0
+ # @raise [ArgumentError] raised if the value is not a Integer, Float value greater or equal to 0
# @return [Boolean] true if the data is valid
def self.validate_unsigned_numeric(v)
DataTypeValidator.validate(:unsigned_numeric, Numeric, v, UINT_VALIDATOR)