Skip to content

Commit

Permalink
fix type in lua examples (envoyproxy#12301)
Browse files Browse the repository at this point in the history
Signed-off-by: Rama Chavali <[email protected]>
  • Loading branch information
ramaraochavali authored Jul 27, 2020
1 parent 41c9eb6 commit 8512122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/root/configuration/http/http_filters/lua_filter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ A simple example of configuring Lua HTTP filter that contains only :ref:`inline_
name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.lua
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: |
-- Called on the request path.
function envoy_on_request(request_handle)
Expand All @@ -93,7 +93,7 @@ As a concrete example, given the following Lua filter configuration:
name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.lua
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: |
function envoy_on_request(request_handle)
-- do something
Expand Down

0 comments on commit 8512122

Please sign in to comment.