From a6a67a2b3db2a88d0efb5856e5d212834d5aba28 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Mon, 4 Apr 2016 19:22:41 +0300 Subject: [PATCH] Update example paths in introduction/di_in_python.rst --- docs/examples/index.rst | 0 docs/examples/movie_lister.rst | 0 docs/main/introduction/di_in_python.rst | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 docs/examples/index.rst create mode 100644 docs/examples/movie_lister.rst diff --git a/docs/examples/index.rst b/docs/examples/index.rst new file mode 100644 index 00000000..e69de29b diff --git a/docs/examples/movie_lister.rst b/docs/examples/movie_lister.rst new file mode 100644 index 00000000..e69de29b diff --git a/docs/main/introduction/di_in_python.rst b/docs/main/introduction/di_in_python.rst index 521de444..fb658943 100644 --- a/docs/main/introduction/di_in_python.rst +++ b/docs/main/introduction/di_in_python.rst @@ -86,12 +86,12 @@ Example Let's go through next example: -.. literalinclude:: ../../../examples/ioc_di_demo/car_engine_1.py +.. literalinclude:: ../../../examples/ioc_di_demos/car_engine_1.py :language: python ``Car`` **creates** an ``Engine`` during its creation. Really? Does it make more sense then creating an ``Engine`` separatelly and then **put (inject) it into** ``Car`` when ``Car`` is being created? -.. literalinclude:: ../../../examples/ioc_di_demo/car_engine_2.py +.. literalinclude:: ../../../examples/ioc_di_demos/car_engine_2.py :language: python