Skip to content

Commit

Permalink
Fix problematic language
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukáš Hrázký authored and dmach committed Feb 16, 2021
1 parent 87ccc06 commit 2abca22
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/libdnf/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ CHM_FILE =
HHC_LOCATION =

# The GENERATE_CHI flag controls if a separate .chi index file is generated
# (YES) or that it should be included in the master .chm file (NO).
# (YES) or that it should be included in the main .chm file (NO).
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

Expand Down
2 changes: 1 addition & 1 deletion docs/libdnf/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. libdnf documentation master file, created by
.. libdnf documentation main file, created by
sphinx-quickstart on Fri Nov 10 18:35:37 2017.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Expand Down
4 changes: 2 additions & 2 deletions libdnf/dnf-repo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1832,9 +1832,9 @@ dnf_repo_update(DnfRepo *repo,

/* see dnf_repo_check_internal */
if (!dnf_context_get_enable_filelists(priv->context)) {
const gchar *blacklist[] = { "filelists", NULL };
const gchar *excluded_metadata_types[] = { "filelists", NULL };
ret = lr_handle_setopt(priv->repo_handle, error,
LRO_YUMBLIST, blacklist);
LRO_YUMBLIST, excluded_metadata_types);
if (!ret)
goto out;
}
Expand Down
4 changes: 2 additions & 2 deletions tests/libdnf/dnf-self-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ dnf_lock_threads_func(void)
guint lock_id;
DnfLock *lock;

/* take in master thread */
/* take in parent thread */
lock = dnf_lock_new();
dnf_lock_set_lock_dir(lock, "/tmp");
lock_id = dnf_lock_take(lock,
Expand All @@ -171,7 +171,7 @@ dnf_lock_threads_func(void)
g_assert_no_error(error);
g_assert_cmpint(lock_id, >, 0);

/* attempt to take in slave thread(should fail) */
/* attempt to take in child thread(should fail) */
one = g_thread_new("dnf-lock-one",
dnf_self_test_lock_thread_one,
lock);
Expand Down

0 comments on commit 2abca22

Please sign in to comment.