From ce53de47a2702f9b09ff9363929057736660567b Mon Sep 17 00:00:00 2001 From: James Bennett Date: Sat, 15 Sep 2007 01:02:45 +0000 Subject: [PATCH] Correcting inadvertent typo from [6224] git-svn-id: http://code.djangoproject.com/svn/django/trunk@6251 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 2e18fd6130..4e97dcd541 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -46,7 +46,7 @@ will create a ``mysite`` directory in your current directory. If you're using Mac OS X, you may see the message "permission denied" when you try to run ``django-admin.py startproject``. This is because, on Unix-based systems like OS X, a file must be marked - as "exceutable" before it can be run as a program. To do this, open + as "executable" before it can be run as a program. To do this, open Terminal.app and navigate (using the `cd` command) to the directory where ``django-admin.py`` is installed, then run the command ``chmod +x django-admin.py``.