Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fixing a captilization typo s/WSGIapplication/WSGIApplication/
Browse files Browse the repository at this point in the history
  • Loading branch information
rsamuelklatchko committed Jun 3, 2014
1 parent 0f2a5e5 commit a6bd7d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/guide/app.rst
Expand Up @@ -252,7 +252,7 @@ the application, returning the resulting response from a handler::
def get(self):
self.response.write('Hello, world!')

app = webapp2.WSGIapplication([('/', HelloHandler)])
app = webapp2.WSGIApplication([('/', HelloHandler)])

# Test the app, passing parameters to build a request.
response = app.get_response('/')
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/testing.rst
Expand Up @@ -15,7 +15,7 @@ tested::
def get(self):
self.response.write('Hello, world!')

app = webapp2.WSGIapplication([('/', HelloHandler)])
app = webapp2.WSGIApplication([('/', HelloHandler)])

def main():
app.run()
Expand Down Expand Up @@ -94,7 +94,7 @@ application, returning the resulting response::
def get(self):
self.response.write('Hello, world!')

app = webapp2.WSGIapplication([('/', HelloHandler)])
app = webapp2.WSGIApplication([('/', HelloHandler)])

# Test the app, passing parameters to build a request.
response = app.get_response('/')
Expand Down

0 comments on commit a6bd7d4

Please sign in to comment.