From b4d638dd57b3fd53e189c062fe3e6b1657c20a3f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 Dec 2017 06:54:50 -0500 Subject: Fix inconsistent parameter names --- sord/sord.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sord/sord.h') diff --git a/sord/sord.h b/sord/sord.h index cf8eec6..28353fc 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -190,7 +190,7 @@ sord_new_uri(SordWorld* world, const uint8_t* uri); SORD_API SordNode* sord_new_relative_uri(SordWorld* world, - const uint8_t* str, + const uint8_t* uri, const uint8_t* base_uri); /** @@ -462,7 +462,7 @@ sord_contains(SordModel* model, const SordQuad pat); */ SORD_API bool -sord_add(SordModel* model, const SordQuad quad); +sord_add(SordModel* model, const SordQuad tup); /** Remove a quad from a model. @@ -472,7 +472,7 @@ sord_add(SordModel* model, const SordQuad quad); */ SORD_API void -sord_remove(SordModel* model, const SordQuad quad); +sord_remove(SordModel* model, const SordQuad tup); /** Remove a quad from a model via an iterator. @@ -556,7 +556,7 @@ sord_inserter_write_statement(SordInserter* inserter, */ SORD_API void -sord_iter_get(const SordIter* iter, SordQuad quad); +sord_iter_get(const SordIter* iter, SordQuad tup); /** Return a field of the quad pointed to by `iter`. -- cgit v1.2.1