Skip to content

Commit

Permalink
DOC: Fix the documentation for instantiation patterns.
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterbeek committed Sep 9, 2017
1 parent 633979a commit 35a642b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions prolog/hdt.pl
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
hdt_search/4, % +HDT, ?S,?P,?O
hdt_header/4, % +HDT, ?S,?P,?O

hdt_subject/2, % +HDT, -Subject
hdt_predicate/2, % +HDT, -Predicate
hdt_shared/2, % +HDT, -Shared
hdt_object/2, % +HDT, -Object
hdt_subject/2, % +HDT, ?Subject
hdt_predicate/2, % +HDT, ?Predicate
hdt_shared/2, % +HDT, ?Shared
hdt_object/2, % +HDT, ?Object
hdt_node/2, % +HDT, ?Node

hdt_suggestions/5, % +HDT, +Base, +Role, +MaxCount, -List
Expand Down Expand Up @@ -139,10 +139,10 @@
header_untyped_object(S, O) :-
rdf_equal(O, S^^xsd:string).

%% hdt_subject(+HDT, -IRI) is nondet.
%% hdt_predicate(+HDT, -IRI) is nondet.
%% hdt_object(+HDT, -Object) is nondet.
%% hdt_shared(+HDT, -IRI) is nondet.
%% hdt_subject(+HDT, ?S) is nondet.
%% hdt_predicate(+HDT, ?P) is nondet.
%% hdt_object(+HDT, ?O) is nondet.
%% hdt_shared(+HDT, ?SO) is nondet.
%% hdt_node(+HDT, ?Node) is nondet.
%
% Enumerate possible values for the individual components of the
Expand Down

0 comments on commit 35a642b

Please sign in to comment.