From 02e01e2aa31fd612217c4917f2be152189bf6258 Mon Sep 17 00:00:00 2001 From: epsimatt Date: Tue, 26 May 2020 21:04:31 +0900 Subject: [PATCH] update: fix internal link for 'classes' --- oop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oop.md b/oop.md index b6a1f393..53f1cc82 100644 --- a/oop.md +++ b/oop.md @@ -32,7 +32,7 @@ You must be wondering how Python gives the value for `self` and why you don't ne This also means that if you have a method which takes no arguments, then you still have to have one argument - the `self`. -## Classes {#class} +## Classes {#classes} The simplest class possible is shown in the following example (save as `oop_simplestclass.py`).