Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 73fd416

Browse files
standby24x7patthoyts
authored andcommitted
git-gui: correct spelling errors in comments
Signed-off-by: Masanari Iida <[email protected]> Signed-off-by: Pat Thoyts <[email protected]>
1 parent 224cce8 commit 73fd416

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all::
44
#
55
# Define NO_MSGFMT if you do not have msgfmt from the GNU gettext
66
# package and want to use our rough pure Tcl po->msg translator.
7-
# TCL_PATH must be vaild for this to work.
7+
# TCL_PATH must be valid for this to work.
88
#
99

1010
GIT-VERSION-FILE: FORCE

lib/blame.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class blame {
55

66
image create photo ::blame::img_back_arrow -data {R0lGODlhGAAYAIUAAPwCBEzKXFTSZIz+nGzmhGzqfGTidIT+nEzGXHTqhGzmfGzifFzadETCVES+VARWDFzWbHzyjAReDGTadFTOZDSyRDyyTCymPARaFGTedFzSbDy2TCyqRCyqPARaDAyCHES6VDy6VCyiPAR6HCSeNByWLARyFARiDARqFGTifARiFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAAAALAAAAAAYABgAAAajQIBwSCwaj8ikcsk0BppJwRPqHEypQwHBis0WDAdEFyBIKBaMAKLBdjQeSkFBYTBAIvgEoS6JmhUTEwIUDQ4VFhcMGEhyCgoZExoUaxsWHB0THkgfAXUGAhoBDSAVFR0XBnCbDRmgog0hpSIiDJpJIyEQhBUcJCIlwA22SSYVogknEg8eD82qSigdDSknY0IqJQXPYxIl1dZCGNvWw+Dm510GQQAh/mhDcmVhdGVkIGJ5IEJNUFRvR0lGIFBybyB2ZXJzaW9uIDIuNQ0KqSBEZXZlbENvciAxOTk3LDE5OTguIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpodHRwOi8vd3d3LmRldmVsY29yLmNvbQA7}
77

8-
# Persistant data (survives loads)
8+
# Persistent data (survives loads)
99
#
1010
field history {}; # viewer history: {commit path}
1111
field header ; # array commit,key -> header field

lib/index.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ proc revert_helper {txt paths} {
414414
# such distinction is needed in some languages. Previously, the
415415
# code used "Revert changes in" for both, but that can't work
416416
# in languages where 'in' must be combined with word from
417-
# rest of string (in diffrent way for both cases of course).
417+
# rest of string (in different way for both cases of course).
418418
#
419419
# FIXME: Unfortunately, even that isn't enough in some languages
420420
# as they have quite complex plural-form rules. Unfortunately,

lib/spellcheck.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ field w_menu ; # context menu for the widget
1414
field s_menuidx 0 ; # last index of insertion into $w_menu
1515

1616
field s_i {} ; # timer registration for _run callbacks
17-
field s_clear 0 ; # did we erase mispelled tags yet?
17+
field s_clear 0 ; # did we erase misspelled tags yet?
1818
field s_seen [list] ; # lines last seen from $w_text in _run
1919
field s_checked [list] ; # lines already checked
2020
field s_pending [list] ; # [$line $data] sent to ispell/aspell
@@ -259,7 +259,7 @@ method _run {} {
259259
if {$n == $cur_line
260260
&& ![regexp {^\W$} [$w_text get $cur_pos insert]]} {
261261

262-
# If the current word is mispelled remove the tag
262+
# If the current word is misspelled remove the tag
263263
# but force a spellcheck later.
264264
#
265265
set tags [$w_text tag names $cur_pos]

0 commit comments

Comments
 (0)