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