From f66c252e47c63d7961b8d2c00acdf5aed11eb851 Mon Sep 17 00:00:00 2001 From: Andre Wobst Date: Tue, 15 Jun 2010 07:00:17 +0800 Subject: [PATCH] typo --- docs/patterns/packages.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/packages.rst b/docs/patterns/packages.rst index fd9bc689..db5b00a3 100644 --- a/docs/patterns/packages.rst +++ b/docs/patterns/packages.rst @@ -186,7 +186,7 @@ different module (say `frontend`). This would look like this:: def index(): return "I'm the frontend index" -Now let's say we only want to redirect to a different module in the same +Now let's say we only want to redirect to a different function in the same module. Then we can either use the full qualified endpoint name like we did in the example above, or we just use the function name::