Fix typos

found them with codespell.

Signed-off-by: Diego Viola <diego.viola@gmail.com>
This commit is contained in:
Diego Viola 2024-05-20 10:45:04 -03:00 committed by Wim Taymans
parent 8a24ad3073
commit 7410755c03
45 changed files with 100 additions and 100 deletions

View file

@ -162,7 +162,7 @@ PWTEST(properties_new)
p = pw_properties_new(NULL, NULL);
pwtest_ptr_notnull(p);
pwtest_ptr_null(pw_properties_get(p, "k1"));
pw_properties_free(p); /* sefault/valgrind only check */
pw_properties_free(p); /* segfault/valgrind only check */
p = pw_properties_new_string("k1=v1 k2 = v2\tk3\t=\tv3\nk4\n=\nv4");
pwtest_str_eq(pw_properties_get(p, "k1"), "v1");