From e80f3bc74f776c7048279af96287fa867579520d Mon Sep 17 00:00:00 2001 From: Sudar Date: Thu, 25 Apr 2013 13:40:17 +0530 Subject: [PATCH] Fixed typos in comments inside code --- plugin/vimrepress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/vimrepress.py b/plugin/vimrepress.py index 913a979..dab0a86 100644 --- a/plugin/vimrepress.py +++ b/plugin/vimrepress.py @@ -910,7 +910,7 @@ def blog_guess_open(what): if blog_index != -1: guess_id = re.search(r"\S+?p=(\d+)$", what) - # permantlinks + # permalinks if guess_id is None: # try again for /archives/%post_id% @@ -937,7 +937,7 @@ def blog_guess_open(what): if blog_index != -1 and blog_index != g_data.conf_index: blog_config_switch(blog_index) - # Uesr input something not a usabe url, try numberic + # User input not a url, try numeric else: try: post_id = str(int(what))