From cca7119a606393fe48b487195c3b516990fcbb72 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 31 Aug 2015 20:51:39 +0200 Subject: [PATCH] Fix DELETE spelling in docstring. --- httpbin/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/core.py b/httpbin/core.py index efbb800..0960e74 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -179,7 +179,7 @@ def view_patch(): @app.route('/delete', methods=('DELETE',)) def view_delete(): - """Returns DETLETE Data.""" + """Returns DELETE Data.""" return jsonify(get_dict( 'url', 'args', 'form', 'data', 'origin', 'headers', 'files', 'json'))