Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/nemo-bookmark-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ nemo_bookmark_list_append (NemoBookmarkList *bookmarks,
/**
* nemo_bookmark_list_contains:
*
* Check whether a bookmark with matching name and url is already in the list.
* Check whether a bookmark for the same location is already in the list.
* @bookmarks: NemoBookmarkList to check contents of.
* @bookmark: NemoBookmark to match against.
*
Expand All @@ -420,7 +420,7 @@ nemo_bookmark_list_contains (NemoBookmarkList *bookmarks,

return g_list_find_custom (bookmarks->list,
(gpointer)bookmark,
nemo_bookmark_compare_with)
nemo_bookmark_compare_uris)
!= NULL;
}

Expand Down