Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions SpellChecker/src/main/dist/english_dic/eng_com.dic
Original file line number Diff line number Diff line change
Expand Up @@ -7829,6 +7829,7 @@ buyer
buyer's
buyers
buying
buyout
buys
buzz
buzzard
Expand Down Expand Up @@ -8373,6 +8374,7 @@ casualty
casualty's
cat
cat's
catalog
catalyst
catalyst's
catalysts
Expand Down Expand Up @@ -28733,9 +28735,11 @@ observers
observes
observing
observingly
obsessing
obsession
obsession's
obsessions
obsessive
obsolescence
obsolete
obsoleted
Expand Down Expand Up @@ -29703,6 +29707,7 @@ paleness
paler
pales
palest
palette
palfrey
paling
pall
Expand Down Expand Up @@ -31468,6 +31473,7 @@ portends
porter
portering
porters
portfolio
porting
portion
portion's
Expand Down Expand Up @@ -36299,6 +36305,8 @@ rumbles
rumbling
rumen
rumens
ruminate
ruminating
rump
rumple
rumpled
Expand Down Expand Up @@ -40283,6 +40291,7 @@ strenuousness
stress
stressed
stresses
stressful
stressing
stretch
stretched
Expand Down
12 changes: 12 additions & 0 deletions SpellChecker/src/main/dist/english_dic/programming.dic
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
ANSI
API
API's
IntelliJ
apache
applet
applet's
applets
arg
args
auth
backend
com
config
configs
css
csv
ctrl
datestamp
def
dir
doc
Expand All @@ -28,13 +32,18 @@ hotfix
hotfixes
href
html
httpd
int
javadoc
jdk
li
localhost
microservice
microservices
min
ms
mutex
mutexes
ol
plugin
plugins
Expand All @@ -46,13 +55,16 @@ refactoring
refactors
regex
regexes
sh
sonatype
td
timestamp
todo
toolbar
tr
txt
ul
uncomment
upsert
upserts
uuid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private SpellingParser createSpellingParser() {
}

try {
return SpellingParser.createEnglishSpellingParser(zip, true);
return SpellingParser.createEnglishSpellingParser(zip, true, true);
} catch (IOException ioe) {
ioe.printStackTrace();
}
Expand Down Expand Up @@ -189,7 +189,7 @@ public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(DemoRootPane.this,
"<html><b>Spell Checker</b> - An add-on for RSyntaxTextArea" +
"<br>that does spell checking in code comments." +
"<br>Version 3.0.3" +
"<br>Version 3.4.1" +
"<br>Licensed under the LGPL",
"About Spell Checker",
JOptionPane.INFORMATION_MESSAGE);
Expand Down