Update a comment to better reflect the internal data changes

This commit is contained in:
Colomban Wendling 2017-09-23 11:59:20 -07:00
parent 6522332ba9
commit 198a0cf2ba

View File

@ -1317,7 +1317,9 @@ static void update_tree_tags(GeanyDocument *doc, GList **tags)
GList *item;
/* Build hash tables holding tags and parents */
/* parent table is GHashTable<tag_name, GTree<line_num, GtkTreeIter>> */
/* parent table is GHashTable<tag_name, GTree<line_num, GtkTreeIter>>
* where tag_name might be a fully qualified name (with scope) if the language
* parser reports scope properly (see tm_tag_has_full_context()). */
parents_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, parents_table_value_free);
/* tags table is another representation of the @tags list,
* GHashTable<TMTag, GTree<line_num, GList<GList<TMTag>>>> */