mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
docs: Fix typos
This commit is contained in:
parent
9a8d156075
commit
436200b0cb
@ -236,7 +236,7 @@
|
||||
* The variable argument list is the attributes used to later
|
||||
* lookup the password. These attributes must conform to the schema.
|
||||
*/
|
||||
secret_password_clear (EXAMPLE_SCHEMA, NULL, on_password_cleard, NULL,
|
||||
secret_password_clear (EXAMPLE_SCHEMA, NULL, on_password_cleared, NULL,
|
||||
"string", "nine",
|
||||
"even", FALSE,
|
||||
NULL);
|
||||
|
@ -84,7 +84,7 @@ _secret_attributes_for_variant (GVariant *variant)
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* Returns: (transfer full) (element-type utf8 utf8): a new table of
|
||||
* attributes, to be released with g_hash_table_unref()
|
||||
@ -113,7 +113,7 @@ secret_attributes_build (const SecretSchema *schema,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* Returns: (transfer full) (element-type utf8 utf8): a new table of
|
||||
* attributes, to be released with g_hash_table_unref()
|
||||
|
@ -61,7 +61,7 @@
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the @schema.
|
||||
* The list of attribtues should be terminated with a %NULL.
|
||||
* The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* If the attributes match a secret item already stored in the collection, then
|
||||
* the item will be updated with these new values.
|
||||
@ -381,7 +381,7 @@ secret_password_store_finish (GAsyncResult *result,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the @schema.
|
||||
* The list of attribtues should be terminated with a %NULL.
|
||||
* The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* If the attributes match a secret item already stored in the collection, then
|
||||
* the item will be updated with these new values.
|
||||
@ -625,7 +625,7 @@ secret_password_storev_binary_sync (const SecretSchema *schema,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* If no secret is found then %NULL is returned.
|
||||
*
|
||||
@ -909,7 +909,7 @@ secret_password_lookup_sync (const SecretSchema *schema,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* If no secret is found then %NULL is returned.
|
||||
*
|
||||
@ -1169,7 +1169,7 @@ secret_password_lookupv_sync (const SecretSchema *schema,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* All unlocked items that match the attributes will be deleted.
|
||||
*
|
||||
@ -1345,7 +1345,7 @@ secret_password_clear_finish (GAsyncResult *result,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* All unlocked items that match the attributes will be deleted.
|
||||
*
|
||||
@ -1449,7 +1449,7 @@ secret_password_clearv_sync (const SecretSchema *schema,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) attribute value, either a character
|
||||
* string, an int number, or a gboolean value, as defined in the password
|
||||
* @schema. The list of attribtues should be terminated with a %NULL.
|
||||
* @schema. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* This method will return immediately and complete asynchronously.
|
||||
*
|
||||
|
@ -251,7 +251,7 @@ secret_schema_newv (const gchar *name,
|
||||
* The variable argument list should contain pairs of a) The attribute name as
|
||||
* a null-terminated string, followed by b) integers from the
|
||||
* #SecretSchemaAttributeType enumeration, representing the attribute type for
|
||||
* each attribute name. The list of attribtues should be terminated with a %NULL.
|
||||
* each attribute name. The list of attributes should be terminated with a %NULL.
|
||||
*
|
||||
* Normally when looking up passwords only those with matching schema names are
|
||||
* returned. If the schema @flags contain the %SECRET_SCHEMA_DONT_MATCH_NAME flag,
|
||||
|
Loading…
Reference in New Issue
Block a user