From 5145580bf1eb13d9f34732ae8697f248150c9e81 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:11:17 +0000 Subject: [PATCH] Syntax highlighting --- Documentation/overview/ARKitecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/overview/ARKitecture.md b/Documentation/overview/ARKitecture.md index 7c050f5bb..1f924d6f9 100644 --- a/Documentation/overview/ARKitecture.md +++ b/Documentation/overview/ARKitecture.md @@ -20,7 +20,7 @@ which includes all commonly used mathematical and scientific Python packages. For users unfamiliar with OOP, we strongly encourage you to review the background material on OOP provided by the good people at [QuantEcon](https://python.quantecon.org/intro.html) (for more on them, see below) at this link: [Object Oriented Programming](https://python-programming.quantecon.org/oop_intro.html). Unlike non-OOP languages, OOP bundles together data and functions into _objects_. These can be accessed via: **_object_name.data_** and **_object_name.method_name()_**, respectively. For organizational purposes, definitions of multiple objects are stored in _modules_, which are simply files with a **_.py_** extension. Modules can be accessed in Python via: -``` +```python import module_name as import_name ```