From 6f69d7d17f40274e846d3a70903c35100e9fb97a Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Sun, 25 May 2014 15:38:57 +0200 Subject: [PATCH] Fixed comment typo --- jedi/parser/tokenize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jedi/parser/tokenize.py b/jedi/parser/tokenize.py index 6587265d..40ecab1b 100644 --- a/jedi/parser/tokenize.py +++ b/jedi/parser/tokenize.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- """ This tokenizer has been copied from the ``tokenize.py`` standard library -tokenizer. The reason was simple: The standanrd library tokenizer fails +tokenizer. The reason was simple: The standard library tokenizer fails if the indentation is not right. The fast parser of jedi however requires "wrong" indentation. Basically this is a stripped down version of the standard library module, so you can read the documentation there. Additionally we included some speed and -memory optimizations, here. +memory optimizations here. """ from __future__ import absolute_import