Skip to content

Commit

Permalink
(V1.0.0) FIX string representation of SPARQL datatype filter;
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Aug 28, 2016
1 parent ba66634 commit 5c9961a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RDFSharp/Query/Filters/RDFDatatypeFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class RDFDatatypeFilter: RDFFilter {
/// Gives the string representation of the filter
/// </summary>
public override String ToString() {
return "FILTER ( DATATYPE(" + this.Variable + ") = <" + RDFModelUtilities.GetDatatypeFromEnum(this.Datatype) + ">) )";
return "FILTER ( DATATYPE(" + this.Variable + ") = <" + RDFModelUtilities.GetDatatypeFromEnum(this.Datatype) + "> )";
}
#endregion

Expand Down

0 comments on commit 5c9961a

Please sign in to comment.