From 91df42f1708875a095561965a2816774ea41fbb2 Mon Sep 17 00:00:00 2001 From: Kevin Ndung'u Date: Wed, 10 Aug 2016 16:58:21 +0300 Subject: [PATCH] Fix .PHONY target rule .PHONY should be followed by a colon --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 7879d1707..ef0184e7e 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -254,7 +254,7 @@ your project. test: py.test tests - .PHONY init test + .PHONY: init test Other generic management scripts (e.g. ``manage.py`` or ``fabfile.py``) belong at the root of the repository as well.