Fix typo (embeded -> embedded)

This commit is contained in:
Alex Ling 2020-02-29 00:08:27 +00:00
parent 8c47d50291
commit 7f0088f45a

View File

@ -24,7 +24,7 @@ class Server
add_handler AuthHandler.new @context.storage add_handler AuthHandler.new @context.storage
{% if flag?(:release) %} {% if flag?(:release) %}
# when building for relase, embed the static files in binary # when building for relase, embed the static files in binary
@context.debug "We are in release mode. Using embeded static files." @context.debug "We are in release mode. Using embedded static files."
serve_static false serve_static false
add_handler StaticHandler.new add_handler StaticHandler.new
{% end %} {% end %}