Skip to content

Commit

Permalink
Fixing split words like construc- tivism in skim.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
houshuang committed Apr 2, 2012
1 parent 03100cb commit 9d4f1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skim.rb
Expand Up @@ -84,7 +84,7 @@ def format(type, text, page)
type = $1
text = ''
else
text << line # just add the text
text << line.gsub(/([a-zA-Z])\- ([a-zA-Z])/, '\1\2') # just add the text (mend split words)
alltext << line
end
end
Expand Down

0 comments on commit 9d4f1d9

Please sign in to comment.