docs BUGFIX typo
diff --git a/src/libyang.h.in b/src/libyang.h.in
index 98add5a..37c46b8 100644
--- a/src/libyang.h.in
+++ b/src/libyang.h.in
@@ -97,11 +97,11 @@
  *
  * When creating a new context, search dir can be specified (NULL is accepted) to provide directory
  * where libyang will automatically search for schemas being imported or included. The search path
- * can be later changed via ly_ctx_set_searchdir() and ly_ctx_unset_searchidrs() functions. If the search dir
+ * can be later changed via ly_ctx_set_searchdir() and ly_ctx_unset_searchdrs() functions. If the search dir
  * is specified, it is explored first. Except the searchpath, also all its subdirectories (and symlinks) are
  * taken into account. In case the module is not found, libyang tries to find the (sub)module also in current
  * working working directory. Note, that in this case only the current directory without any other subdirectory
- * is examinde. This automatic searching can be completely avoided when the caller sets module searching callback
+ * is examined. This automatic searching can be completely avoided when the caller sets module searching callback
  * (#ly_module_imp_clb) via ly_ctx_set_module_imp_clb().
  *
  * Schemas are added into the context using [parser functions](@ref howtoschemasparsers) - \b lys_parse_*().