From 1f2cd4a5838d90803c7accaed9381dbcd13f90fe Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Wed, 13 Apr 2022 23:51:30 +0800 Subject: [PATCH] Fix typo --- lib/rdf/serializations/turtle/star_compact_graph.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdf/serializations/turtle/star_compact_graph.ex b/lib/rdf/serializations/turtle/star_compact_graph.ex index 9b966d7..cdf9129 100644 --- a/lib/rdf/serializations/turtle/star_compact_graph.ex +++ b/lib/rdf/serializations/turtle/star_compact_graph.ex @@ -33,7 +33,7 @@ defmodule RDF.Turtle.Star.CompactGraph do end defp add_annotation(compact_graph, {{_, _, _} = quoted_triple, p, o} = triple, annotation) do - # Check if the compact graph still contains the annoted triple, we want to put the annotation under. + # Check if the compact graph still contains the annotated triple, we want to put the annotation under. if Graph.describes?(compact_graph, quoted_triple) do do_add_annotation(compact_graph, triple, annotation) else