From bcfa6f8f180a8fa9461a21bed0c70e5e0f7c6be8 Mon Sep 17 00:00:00 2001 From: akovardakov Date: Mon, 29 Apr 2019 18:33:02 +0500 Subject: [PATCH] fixed typos --- doc/source/misc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/misc.rst b/doc/source/misc.rst index f26db89..5197ebb 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -6,9 +6,9 @@ Annotating Code With HTML Cython has a ``-a`` option which generates an HTML page showing both the Cython code and the C code. It is invoked thus:: - $ cython -z cyFibo.pyx + $ cython -a cyFibo.pyx -Here is a screenshot of :download:`the reuslt <_static/cyFibo.html>`. It is colour annotated to show the complexity of the conversion, the more calls into the Python Virtual Machine for each line of Cython then the darker the shade of yellow: +Here is a screenshot of :download:`the result <_static/cyFibo.html>`. It is colour annotated to show the complexity of the conversion, the more calls into the Python Virtual Machine for each line of Cython then the darker the shade of yellow: .. image:: images/HTML_Cython.png :scale: 80 %