Skip to content

Commit

Permalink
Merge pull request #147 from evgeni/typos
Browse files Browse the repository at this point in the history
fix a couple of typos
  • Loading branch information
frlan committed Apr 23, 2014
2 parents cbfe198 + 635829c commit c172ff2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions multiterm/src/defconf.vala
Expand Up @@ -35,12 +35,12 @@ namespace MultiTerm
#======================================================================#
# #
# You can configure the behaviour of the MultiTerm plugin by adjusting #
# the values in this file. Lines begining with a # are considered #
# the values in this file. Lines beginning with a # are considered #
# comments and are left as is. Group/section names go in [] and keys #
# and values are separated by an = symbol. Where more than one value #
# can be supplied, as in a list, separate the values with the ; symbol.#
# #
# Groups/section names begining with 'shell=' denote a type of #
# Groups/section names beginning with 'shell=' denote a type of #
# terminal/shell that can be opened. The name of the shell follows #
# the = symbol. Each shell can have it's own specific VTE #
# configuration and can run it's own child command. As an example, if #
Expand Down
4 changes: 2 additions & 2 deletions treebrowser/src/treebrowser.c
Expand Up @@ -1157,8 +1157,8 @@ on_menu_close_children(GtkMenuItem *menuitem, gchar *uri)
{
if (documents[i]->is_valid)
{
/* the docuemnt filename shoudl always be longer than the uri when closing children
* Compare the beginingin of the filename string to see if it matchs the uri*/
/* the document filename should always be longer than the uri when closing children
* Compare the beginning of the filename string to see if it matchs the uri*/
if (strlen(documents[i]->file_name) > uri_len)
{
if (strncmp(uri, documents[i]->file_name, uri_len)==0)
Expand Down

0 comments on commit c172ff2

Please sign in to comment.