From 8ec6b87c42722025648732a1f52b1bb561d844c9 Mon Sep 17 00:00:00 2001
From: Russell Keith-Magee <russell@keith-magee.com>
Date: Wed, 12 Nov 2008 11:53:16 +0000
Subject: [PATCH] [1.0.X] Fixed #9572 -- Corrected some documentation that
 misleadingly gave the extension for YAML fixtures as YML. Thanks to
 django@i-sh.me.uk for the report.

Merge from trunk of [9401]


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/howto/initial-data.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt
index 580518b5e8..917e11bb64 100644
--- a/docs/howto/initial-data.txt
+++ b/docs/howto/initial-data.txt
@@ -77,7 +77,7 @@ out any changes you've made.
 Automatically loading initial data fixtures
 -------------------------------------------
 
-If you create a fixture named ``initial_data.[xml/yml/json]``, that fixture will
+If you create a fixture named ``initial_data.[xml/yaml/json]``, that fixture will
 be loaded every time you run :djadmin:`syncdb`. This is extremely convenient,
 but be careful: remember that the data will be refreshed *every time* you run
 :djadmin:`syncdb`. So don't use ``initial_data`` for data you'll want to edit.