From 98239112fc0916b87cabc1b824be3a7c2895ee4a Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Thu, 22 Jul 2021 17:45:01 +0800 Subject: [PATCH] Correct a typo in as-relation.c --- src/as-relation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as-relation.c b/src/as-relation.c index 02b93f591..b38527637 100644 --- a/src/as-relation.c +++ b/src/as-relation.c @@ -1162,7 +1162,7 @@ as_relation_load_from_yaml (AsRelation *relation, AsContext *ctx, GNode *node, G gint value_px; const gchar *len_str = as_yaml_node_get_value (n); if (strlen (len_str) <= 2) { - /* this string is too short to contain a comparsion operator */ + /* this string is too short to contain a comparison operator */ value_str = g_strdup (len_str); } else { g_autofree gchar *compare_str = NULL;