Browse Source

kamailio-kemi-framework: small spell check and note for KSR.hdr submodule

Daniel-Constantin Mierla 6 years ago
parent
commit
a33c147686
1 changed files with 4 additions and 2 deletions
  1. 4 2
      kamailio-kemi-framework/docs/core.md

+ 4 - 2
kamailio-kemi-framework/docs/core.md

@@ -3,9 +3,11 @@
 The exports to KEMI framework from the core of Kamailio:
 
   * several functions directly to `KSR` module (like `KSR.function(params)`), which are mostly
-  the main function from the core and for writing log messages (some being part of xlog module for
+  the main functions from the core and for writing log messages (some being part of xlog module for
   native kamailio.cfg language)
   * the `KSR.hdr` submodule, which are the most used functions for managing SIP message headers
+  (some of the functions in this submodules correspond to the ones in `textops` or `textopsx`
+  modules for `kamailio.cfg`).
 
 Example of using KEMI functions exported to Lua interpreter:
 
@@ -566,4 +568,4 @@ Example:
 
 ```
 KSR.hdr.append_to_reply("X-My-Hdr: " + KSR.pv.getw("$si") + "\r\n");
-```
+```