Browse Source

Update docs

Denis K 9 years ago
parent
commit
4360d56fd2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      docs/autocomplete.rst
  2. 1 1
      docs/config_file.rst

+ 1 - 1
docs/autocomplete.rst

@@ -5,7 +5,7 @@ Autocomplete
 By default Django JET renders all possible choices for select inputs. This behavior may be unwanted if number of
 available options is rather big. In this case Django JET allows you to load these options dynamically through AJAX.
 
-In order to achieve this functionality all you have to do is :
+In order to achieve this functionality all you have to do is:
 
 * Specify which model fields should be searchable by AJAX queries. Add this static method to all models which you want to be searchable with AJAX:
 

+ 1 - 1
docs/config_file.rst

@@ -113,7 +113,7 @@ If want to show all application's models use ``__all__`` keyword.
 .. note::
 
     You can use ``jet_custom_apps_example`` management command to generate example ``JET_SIDE_MENU_CUSTOM_APPS``
-    setting which includes all your applcations and models. You can use it this way:
+    setting which includes all your applications and models. You can use it this way:
 
     .. code:: python