Skip to content

Commit

Permalink
Added missing @SInCE annotations for new code.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Jun 16, 2010
1 parent cfeff6b commit 1913154
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/rdf/mixin/countable.rb
@@ -1,5 +1,6 @@
module RDF
##
# @since 0.2.0
module Countable
extend RDF::Util::Aliasing::LateBound

Expand Down
3 changes: 3 additions & 0 deletions lib/rdf/mixin/enumerable.rb
Expand Up @@ -560,6 +560,7 @@ def enum_graph
# Mixes in `RDF::Enumerable` into the returned object.
#
# @return [Array]
# @since 0.2.0
def to_a
super.extend(RDF::Enumerable)
end
Expand All @@ -570,6 +571,7 @@ def to_a
# Mixes in `RDF::Enumerable` into the returned object.
#
# @return [Set]
# @since 0.2.0
def to_set
require 'set' unless defined?(::Set)
super.extend(RDF::Enumerable)
Expand Down Expand Up @@ -607,6 +609,7 @@ def to_hash
# @param [Array<Object>] args
# @return [String]
# @see RDF::Writer.dump
# @since 0.2.0
def dump(*args)
RDF::Writer.for(*args).dump(self)
end
Expand Down

0 comments on commit 1913154

Please sign in to comment.