Skip to content

Commit 9c3e5b8

Browse files
committed
README and inspect cleanup.
1 parent 4609fcd commit 9c3e5b8

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[![Gem Version](https://badge.fury.io/rb/rdf-turtle.png)](https://badge.fury.io/rb/rdf-turtle)
66
[![Build Status](https://travis-ci.org/ruby-rdf/rdf-turtle.png?branch=master)](https://travis-ci.org/ruby-rdf/rdf-turtle)
77
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-turtle/badge.svg)](https://coveralls.io/r/ruby-rdf/rdf-turtle)
8-
[![Dependency Status](https://gemnasium.com/ruby-rdf/rdf-turtle.png)](https://gemnasium.com/ruby-rdf/rdf-turtle)
98

109
## Description
1110
This is a [Ruby][] implementation of a [Turtle][] parser for [RDF.rb][].

lib/rdf/turtle/reader.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def each_triple(&block)
163163
# @return [RDF::Statement] Added statement
164164
# @raise [RDF::ReaderError] Checks parameter types and raises if they are incorrect if parsing mode is _validate_.
165165
def add_statement(production, statement)
166-
error("Statement is invalid: #{statement.inspect.inspect}", production: produciton) if validate? && statement.invalid?
166+
error("Statement is invalid: #{statement.inspect}", production: produciton) if validate? && statement.invalid?
167167
@callback.call(statement) if statement.subject &&
168168
statement.predicate &&
169169
statement.object &&

0 commit comments

Comments
 (0)