From dedda228f44a64d73afff120fd6e47b2a27170c2 Mon Sep 17 00:00:00 2001 From: yangliz5 Date: Wed, 26 Jan 2022 00:32:33 -0600 Subject: [PATCH] Fix a typo in class.rst (#3648) 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 6330af5eb..ba006252a 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).