context BUGFIX typo in LY_CTX_DISABLE_SEARCHDIRS
was LY_CTX_DISABLE_SEARCHIDRS
diff --git a/src/libyang.h.in b/src/libyang.h.in
index 1f97bd4..1cda3bb 100644
--- a/src/libyang.h.in
+++ b/src/libyang.h.in
@@ -1123,7 +1123,7 @@
of this schema can be loaded with this option, note that the only
revisions implemented by ly_ctx_info() are 2016-04-09 and 2018-01-17.
This option cannot be used with ly_ctx_new_yl*() functions. */
-#define LY_CTX_DISABLE_SEARCHIDRS 0x08 /**< Do not search for schemas in context's searchidrs neither in current
+#define LY_CTX_DISABLE_SEARCHDIRS 0x08 /**< Do not search for schemas in context's searchdirs neither in current
working directory. It is entirely skipped and the only way to get
schema data for imports or for ly_ctx_load_module() is to use the
callbacks provided by caller via ly_ctx_set_module_imp_clb() */
@@ -1246,10 +1246,10 @@
/**
* @brief Make context to stop searching for schemas (imported, included or requested via ly_ctx_load_module())
- * in searchdirs set via ly_ctx_set_searchdir() functions. Searchidrs are still stored in the context, so by
+ * in searchdirs set via ly_ctx_set_searchdir() functions. Searchdirs are still stored in the context, so by
* unsetting the option by ly_ctx_unset_disable_searchdirs() searching in all previously searchdirs is restored.
*
- * The same effect is achieved by using #LY_CTX_DISABLE_SEARCHIDRS option when creating new context or parsing
+ * The same effect is achieved by using #LY_CTX_DISABLE_SEARCHDIRS option when creating new context or parsing
* a specific schema.
*
* @param[in] ctx Context to be modified.