diff options
Diffstat (limited to 'doc/development/tutorials/examples/recipe.py')
-rw-r--r-- | doc/development/tutorials/examples/recipe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 6bfd99900..c7ebf2a93 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -102,14 +102,14 @@ class RecipeDomain(Domain): name = 'recipe' label = 'Recipe Sample' roles = { - 'ref': XRefRole() + 'ref': XRefRole(), } directives = { 'recipe': RecipeDirective, } indices = { RecipeIndex, - IngredientIndex + IngredientIndex, } initial_data = { 'recipes': [], # object list |