lyb parser REFACTOR rename to lyb_read_term_value
diff --git a/src/parser_lyb.c b/src/parser_lyb.c
index 5296e35..402ab5c 100644
--- a/src/parser_lyb.c
+++ b/src/parser_lyb.c
@@ -226,7 +226,7 @@
 }
 
 /**
- * @brief Read the term node.
+ * @brief Read value of term node.
  *
  * @param[in] term Compiled term node.
  * @param[out] term_value Set to term node value in dynamically
@@ -237,8 +237,8 @@
  * @return LY_ERR value.
  */
 static LY_ERR
-lyb_read_term(const struct lysc_node_leaf *term, uint8_t **term_value,
-        uint32_t *term_value_len, struct lylyb_ctx *lybctx)
+lyb_read_term_value(const struct lysc_node_leaf *term, uint8_t **term_value, uint32_t *term_value_len,
+        struct lylyb_ctx *lybctx)
 {
     uint32_t allocated_size;
     int32_t lyb_data_len;
@@ -1079,8 +1079,7 @@
         LY_CHECK_GOTO(ret, cleanup);
 
         /* parse value */
-        ret = lyb_read_term((struct lysc_node_leaf *)snode, &term_value,
-                &term_value_len, lybctx->lybctx);
+        ret = lyb_read_term_value((struct lysc_node_leaf *)snode, &term_value, &term_value_len, lybctx->lybctx);
         LY_CHECK_GOTO(ret, cleanup);
         dynamic = 1;