We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d99248c commit bd2ddf4Copy full SHA for bd2ddf4
lib/Literal.ts
@@ -32,6 +32,6 @@ export class Literal implements RDF.Literal {
32
33
public equals(other?: RDF.Term | null): boolean {
34
return !!other && other.termType === 'Literal' && other.value === this.value &&
35
- other.language === this.language && other.datatype.equals(this.datatype);
+ other.language === this.language && this.datatype.equals(other.datatype);
36
}
37
0 commit comments