From 788747dd8c5a8c75b4dda84ca6627e8f1af8b6a7 Mon Sep 17 00:00:00 2001 From: yangliz5 Date: Tue, 25 Jan 2022 21:45:47 -0600 Subject: [PATCH] Fix a typo in class.rst Fix a typo in class.rst --- docs/advanced/classes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/classes.rst b/docs/advanced/classes.rst index 6330af5eb4..ba006252a4 100644 --- a/docs/advanced/classes.rst +++ b/docs/advanced/classes.rst @@ -9,7 +9,7 @@ that you are already familiar with the basics from :doc:`/classes`. Overriding virtual functions in Python ====================================== -Suppose that a C++ class or interface has a virtual function that we'd like to +Suppose that a C++ class or interface has a virtual function that we'd like to override from within Python (we'll focus on the class ``Animal``; ``Dog`` is given as a specific example of how one would do this with traditional C++ code).