lib: fix doc comment for ostree_repo_get_min_free_space_bytes

Closes: #1861
Approved by: cgwalters
This commit is contained in:
Felix Krull 2019-05-17 21:33:06 +02:00 committed by Atomic Bot
parent 01c471a6f3
commit 4aeba118b0
1 changed files with 5 additions and 5 deletions

View File

@ -3466,7 +3466,7 @@ ostree_repo_get_mode (OstreeRepo *self)
} }
/** /**
* ostree_repo_get_min_free_space: * ostree_repo_get_min_free_space_bytes:
* @self: Repo * @self: Repo
* @out_reserved_bytes: (out): Location to store the result * @out_reserved_bytes: (out): Location to store the result
* @error: Return location for a #GError * @error: Return location for a #GError
@ -3576,7 +3576,7 @@ list_loose_objects_at (OstreeRepo *self,
if (objtype != OSTREE_OBJECT_TYPE_COMMIT) if (objtype != OSTREE_OBJECT_TYPE_COMMIT)
continue; continue;
/* commit checksum does not match "starting with", do not add to array */ /* commit checksum does not match "starting with", do not add to array */
if (!g_str_has_prefix (buf, commit_starting_with)) if (!g_str_has_prefix (buf, commit_starting_with))
continue; continue;
} }
@ -4446,7 +4446,7 @@ ostree_repo_load_variant (OstreeRepo *self,
*/ */
gboolean gboolean
ostree_repo_load_commit (OstreeRepo *self, ostree_repo_load_commit (OstreeRepo *self,
const char *checksum, const char *checksum,
GVariant **out_variant, GVariant **out_variant,
OstreeRepoCommitState *out_state, OstreeRepoCommitState *out_state,
GError **error) GError **error)
@ -6098,10 +6098,10 @@ ostree_repo_get_default_repo_finders (OstreeRepo *self)
/** /**
* ostree_repo_get_bootloader: * ostree_repo_get_bootloader:
* @self: an #OstreeRepo * @self: an #OstreeRepo
* *
* Get the bootloader configured. See the documentation for the * Get the bootloader configured. See the documentation for the
* "sysroot.bootloader" config key. * "sysroot.bootloader" config key.
* *
* Returns: bootloader configuration for the sysroot * Returns: bootloader configuration for the sysroot
* Since: 2019.2 * Since: 2019.2
*/ */