From 4f19c1a995de507044d1b5ada7fb7398cdb32096 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 18 Mar 2012 07:38:51 +0000 Subject: spelling cleanup --- source/blender/editors/space_text/text_draw.c | 4 ++-- source/blender/editors/space_text/text_ops.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/space_text') diff --git a/source/blender/editors/space_text/text_draw.c b/source/blender/editors/space_text/text_draw.c index e9062b052e6..1c8ff4639cf 100644 --- a/source/blender/editors/space_text/text_draw.c +++ b/source/blender/editors/space_text/text_draw.c @@ -1615,7 +1615,7 @@ static void draw_brackets(SpaceText *st, ARegion *ar) find= -b; stack= 0; - /* Dont highlight backets if syntax HL is off or bracket in string or comment. */ + /* Don't highlight backets if syntax HL is off or bracket in string or comment. */ if(!linep->format || linep->format[fc] == 'l' || linep->format[fc] == '#') return; @@ -1854,7 +1854,7 @@ void text_update_character_width(SpaceText *st) } /* Moves the view to the cursor location, - * also used to make sure the view isnt outside the file */ + * also used to make sure the view isn't outside the file */ void text_scroll_to_cursor(SpaceText *st, ScrArea *sa) { Text *text; diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index 17857275d36..2f6e5082fdc 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -598,7 +598,7 @@ static int text_run_script(bContext *C, ReportList *reports) return OPERATOR_FINISHED; } - /* Dont report error messages while live editing */ + /* Don't report error messages while live editing */ if(!is_live) { if(text->curl != curl_prev || curc_prev != text->curc) { text_update_cursor_moved(C); @@ -1109,7 +1109,7 @@ static int text_convert_whitespace_exec(bContext *C, wmOperator *op) for(a=0; a < strlen(text_check_line); a++) { //foreach char in line if(text_check_line[a] == '\t') { //checking for tabs //get the number of spaces this tabs is showing - //i dont like doing it this way but will look into it later + //i don't like doing it this way but will look into it later new_line[j] = '\0'; number = flatten_string(st, &fs, new_line); flatten_string_free(&fs); -- cgit v1.2.3