[hotfix][docs] replace typename.namespace with functions.
diff --git a/docs/content/docs/deployment/module.md b/docs/content/docs/deployment/module.md
index 7adfde7..0de19ff 100644
--- a/docs/content/docs/deployment/module.md
+++ b/docs/content/docs/deployment/module.md
@@ -24,7 +24,7 @@
 
 # Module Configuration
 
-An applications module configuration contains all necessary runtime information to configure the Stateful Functions runtime for a specific application. It includes the endpoints where functions can be reached along with ingress and egress definitions.
+An application's module configuration contains all necessary runtime information to configure the Stateful Functions runtime for a specific application. It includes the endpoints where functions can be reached along with ingress and egress definitions.
 
 ```yaml
 version: "3.0"
@@ -47,8 +47,7 @@
   - endpoint:
     meta: 
       kind: http
-      typename: 
-        namespace: com.example
+      functions: com.example/*
     spec:
       urlPathTemplate: https://bar.foo.com/{typename.function}
 ```
@@ -66,8 +65,7 @@
   - endpoint:
     meta: 
       kind: http
-      typename: 
-        namespace: com.example
+      functions: com.example/* 
     spec:
       urlPathTemplate: https://bar.foo.com/{typename.function}
 ```
@@ -129,8 +127,7 @@
 endpoint:
   meta:
     kind: http
-    typename:
-      namespace: com.example
+    functions: com.example/*
   spec:
 ```