Skip to content

Commit

Permalink
Use **options instead of explicit keyword arguments for to_sxp.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 19, 2021
1 parent 17a6093 commit afcb9b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rdf/n3/extensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def to_sxp_bin
# Returns an S-Expression (SXP) representation
#
# @return [String]
def to_sxp(Back off on explicit to_sxp arguments.)
to_a.to_sxp_bin.to_sxp(Back off on explicit to_sxp arguments.)
def to_sxp(**options)
to_a.to_sxp_bin.to_sxp(**options)
end
end

Expand Down

0 comments on commit afcb9b3

Please sign in to comment.