Skip to content

Commit 4885f42

Browse files
committed
Fix Yard tags.
1 parent 775a0e6 commit 4885f42

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
Gemfile.lock
44
pkg/*
55
.idea/
6+
.yardoc/
67
/.byebug_history
8+
doc/*

lib/rdf/virtuoso/query.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,22 +240,22 @@ def define(string)
240240
self
241241
end
242242

243-
# @param RDF::URI uri
243+
# @param [RDF::URI] uri
244244
# @return [Query]
245245
# @see http://www.w3.org/TR/rdf-sparql-query/#specDataset
246246
def from(uri)
247247
options[:from] = uri
248248
self
249249
end
250250

251-
# @param RDF::URI uri
251+
# @param [RDF::URI] uri
252252
# @return [Query]
253253
def from_named(uri)
254254
(options[:from_named] ||= []) << uri
255255
self
256256
end
257257

258-
# @param RDF::URI uri
258+
# @param [RDF::URI] uri
259259
# @return [Query]
260260
def graph(uri)
261261
options[:graph] = uri
@@ -284,7 +284,7 @@ def group(*patterns)
284284
end
285285

286286
##
287-
# @param RDF::URI uri
287+
# @param [RDF::URI] uri
288288
# @return [Query]
289289
# Inline version of graph
290290
def graph2(uri)
@@ -710,7 +710,7 @@ def inspect
710710
##
711711
# Serializes an RDF::Value into a format appropriate for select, construct, and where clauses
712712
#
713-
# @param [RDF::Value]
713+
# @param [RDF::Value] value
714714
# @return [String]
715715
# @private
716716
def serialize_value(value)

0 commit comments

Comments
 (0)