소스 검색

Fixed #13271 -- Corrected a typo in the signals documentation. Thanks, chtito.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Justin Bronn 15 년 전
부모
커밋
7cc4046802
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/topics/signals.txt

+ 1 - 1
docs/topics/signals.txt

@@ -103,7 +103,7 @@ Now, our ``my_callback`` function will be called each time a request finishes.
 Connecting to signals sent by specific senders
 ----------------------------------------------
 
-Some signals get sent many times, but you'll only be interested in recieving a
+Some signals get sent many times, but you'll only be interested in receiving a
 certain subset of those signals. For example, consider the
 :data:`django.db.models.signals.pre_save` signal sent before a model gets saved.
 Most of the time, you don't need to know when *any* model gets saved -- just