lib/yard/code_objects/constant_object.rb in yard-0.9.5 vs lib/yard/code_objects/constant_object.rb in yard-0.9.6
- old
+ new
@@ -1,5 +1,6 @@
+# frozen_string_literal: true
module YARD::CodeObjects
register_separator NSEP, :constant
# A +ConstantObject+ represents a Ruby constant (not a module or class).
# To access the constant's (source code) value, use {#value}.
@@ -10,6 +11,6 @@
def value=(value)
@value = format_source(value)
end
end
-end
\ No newline at end of file
+end