Jelajahi Sumber

Merge pull request #2954 from sdaoudi/master

Fixed typos
Thomas 10 tahun lalu
induk
melakukan
b4c4f2c8e9

+ 1 - 1
Resources/doc/cookbook/recipe_customizing_a_mosaic_list.rst

@@ -84,7 +84,7 @@ The ``ObjectMetadata`` object is returned by the related admin class, for instan
 .. code-block:: jinja
 .. code-block:: jinja
 
 
     <?php
     <?php
-    class MediaAdmin extends AdminInterfance
+    class MediaAdmin extends AdminInterface
     {
     {
         // [...] others methods
         // [...] others methods
 
 

+ 1 - 1
Resources/doc/cookbook/recipe_improve_performance_large_datasets.rst

@@ -9,7 +9,7 @@ Change default Pager to SimplePager
 -------------------------------------
 -------------------------------------
 
 
 Default `Pager` is counting all rows in the table, so user can easily navigate
 Default `Pager` is counting all rows in the table, so user can easily navigate
-to any page in the Datagrid. But counting thousands or milions of records
+to any page in the Datagrid. But counting thousands or millions of records
 can be slow operation. If you don't need to know the number of all records,
 can be slow operation. If you don't need to know the number of all records,
 you can use `SimplePager` instead. It doesn't count all rows, but gives user only
 you can use `SimplePager` instead. It doesn't count all rows, but gives user only
 information if there is next page or not.
 information if there is next page or not.

+ 1 - 1
Resources/doc/cookbook/recipe_virtual_field.rst

@@ -8,5 +8,5 @@ In order to prevent any side-effects when trying to retrieve the value of this
 field (which doesn't exist), the option ``virtual_field`` is specified for these
 field (which doesn't exist), the option ``virtual_field`` is specified for these
 fields.
 fields.
 
 
-When the template is instanciated, or whenever the value of the field is
+When the template is instantiated, or whenever the value of the field is
 required, ``null`` will simply be returned without prying on the Model itself.
 required, ``null`` will simply be returned without prying on the Model itself.