Skip to content

Commit 78fc994

Browse files
committed
Merge branch 'master' into config-support
2 parents 672eaf7 + 99c6287 commit 78fc994

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/deploying/cgi.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ is supported by all major servers but usually has a less-than-optimal
66
performance.
77

88
This is also the way you can use a Flask application on Google's
9-
`AppEngine`_, there however the execution does happen in a CGI-like
9+
`App Engine`_, there however the execution does happen in a CGI-like
1010
environment. The application's performance is unaffected because of that.
1111

1212
.. admonition:: Watch Out
@@ -15,9 +15,9 @@ environment. The application's performance is unaffected because of that.
1515
have in your application file, is inside an ``if __name__ ==
1616
'__main__':`` or moved to a separate file. Just make sure it's not
1717
called because this will always start a local WSGI server which we do
18-
not want if we deploy that application to CGI / appengine.
18+
not want if we deploy that application to CGI / app engine.
1919

20-
.. _AppEngine: http://code.google.com/appengine/
20+
.. _App Engine: http://code.google.com/appengine/
2121

2222
Creating a `.cgi` file
2323
----------------------

docs/patterns/caching.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ memcached server then::
3434
from werkzeug.contrib.cache import MemcachedCache
3535
cache = MemcachedCache(['127.0.0.1:11211'])
3636

37-
If you are using appengine, you can connect to the appengine memcache
37+
If you are using App Engine, you can connect to the App Engine memcache
3838
server easily::
3939

4040
from werkzeug.contrib.cache import GAEMemcachedCache

docs/patterns/lazyloading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ that uses decorators has to be imported upfront or Flask will never
88
actually find your function.
99

1010
This can be a problem if your application has to import quick. It might
11-
have to do that on systems like Google's AppEngine or other systems. So
11+
have to do that on systems like Google's App Engine or other systems. So
1212
if you suddenly notice that your application outgrows this approach you
1313
can fall back to a centralized URL mapping.
1414

0 commit comments

Comments
 (0)