spellcheck 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/examples/example.md +3 -0
- data/examples/sample.md +17 -0
- data/exe/spellcheck +18 -0
- data/lib/spellcheck.rb +10 -0
- data/lib/spellcheck/cli.rb +17 -0
- data/lib/spellcheck/color_string.rb +27 -0
- data/lib/spellcheck/filter.rb +21 -0
- data/lib/spellcheck/patterns/en/start_with_A.yml +517 -0
- data/lib/spellcheck/patterns/en/start_with_B.yml +169 -0
- data/lib/spellcheck/patterns/en/start_with_C.yml +525 -0
- data/lib/spellcheck/patterns/en/start_with_D.yml +311 -0
- data/lib/spellcheck/patterns/en/start_with_E.yml +293 -0
- data/lib/spellcheck/patterns/en/start_with_F.yml +220 -0
- data/lib/spellcheck/patterns/en/start_with_G.yml +113 -0
- data/lib/spellcheck/patterns/en/start_with_H.yml +145 -0
- data/lib/spellcheck/patterns/en/start_with_I.yml +337 -0
- data/lib/spellcheck/patterns/en/start_with_J.yml +33 -0
- data/lib/spellcheck/patterns/en/start_with_K.yml +23 -0
- data/lib/spellcheck/patterns/en/start_with_L.yml +121 -0
- data/lib/spellcheck/patterns/en/start_with_M.yml +235 -0
- data/lib/spellcheck/patterns/en/start_with_N.yml +107 -0
- data/lib/spellcheck/patterns/en/start_with_O.yml +208 -0
- data/lib/spellcheck/patterns/en/start_with_P.yml +439 -0
- data/lib/spellcheck/patterns/en/start_with_Q.yml +36 -0
- data/lib/spellcheck/patterns/en/start_with_R.yml +273 -0
- data/lib/spellcheck/patterns/en/start_with_S.yml +555 -0
- data/lib/spellcheck/patterns/en/start_with_T.yml +234 -0
- data/lib/spellcheck/patterns/en/start_with_U.yml +158 -0
- data/lib/spellcheck/patterns/en/start_with_V.yml +128 -0
- data/lib/spellcheck/patterns/en/start_with_W.yml +84 -0
- data/lib/spellcheck/patterns/en/start_with_X.yml +2 -0
- data/lib/spellcheck/patterns/en/start_with_Y.yml +14 -0
- data/lib/spellcheck/patterns/en/start_with_Z.yml +2 -0
- data/lib/spellcheck/proof_reader.rb +29 -0
- data/lib/spellcheck/report.rb +52 -0
- data/lib/spellcheck/typo.rb +18 -0
- data/lib/spellcheck/version.rb +3 -0
- data/spellcheck.gemspec +31 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ccc8fcddeb8cac42a72bbb49620593c4eb5e9ea3
|
4
|
+
data.tar.gz: 83fc769c5f647568d3e9ebae7bdd8825b7a56a6b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9c0a462aa5f174989eddef4bca37e0f2be56637034160936f889eee7889159c922b836742a948e847e10410265311ff71f6999ff395b07471fab39de333cd371
|
7
|
+
data.tar.gz: 90ae8ef9068cf2351db679a3425a8ff7c67eec770b35f788f5abc851732bffca432b8b565e245e105392a6a46f18b5c05efbdbd789097156a698a3880f5752b9
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at k128585@ie.u-ryukyu.ac.jp. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Spellcheck
|
2
|
+
|
3
|
+
simple spell checker for programming, written in Ruby.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```
|
8
|
+
$ gem install spellcheck
|
9
|
+
```
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
example text.
|
14
|
+
|
15
|
+
```
|
16
|
+
hello world.
|
17
|
+
I create aplication now.
|
18
|
+
good bye
|
19
|
+
```
|
20
|
+
|
21
|
+
run `spellcheck` command
|
22
|
+
|
23
|
+
```
|
24
|
+
$ spellcheck example.md
|
25
|
+
```
|
26
|
+
|
27
|
+
result
|
28
|
+
|
29
|
+
```
|
30
|
+
+----------+--------------------------+------------+-------------+
|
31
|
+
| Location | Text | Pattern | Expected |
|
32
|
+
+----------+--------------------------+------------+-------------+
|
33
|
+
| 2 | I create aplication now. | aplication | application |
|
34
|
+
+----------+--------------------------+------------+-------------+
|
35
|
+
|
36
|
+
result: 1 typo found.
|
37
|
+
```
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/siman-man/spellcheck. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "spellcheck"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/examples/example.md
ADDED
data/examples/sample.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
hello world.
|
2
|
+
|
3
|
+
I create aplication now.
|
4
|
+
|
5
|
+
good bye
|
6
|
+
|
7
|
+
dokcer is great tool.
|
8
|
+
|
9
|
+
```
|
10
|
+
bunlde intall ruby-build
|
11
|
+
```
|
12
|
+
|
13
|
+
sample sample sample sample sample sample sample sample sample sample sample sample smaple
|
14
|
+
|
15
|
+
smaple sample sample sample sample sample sample sample sample sample sample sample sample
|
16
|
+
|
17
|
+
sample sample sample sample sample sample smaple sample sample sample sample sample sample
|
data/exe/spellcheck
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'optparse'
|
4
|
+
require 'spellcheck'
|
5
|
+
|
6
|
+
options = ARGV.getopts('vh', 'version', 'help')
|
7
|
+
args = OptionParser.new.parse(ARGV)
|
8
|
+
|
9
|
+
case
|
10
|
+
when options['v'] || options['version']
|
11
|
+
puts "spellcheck: #{SpellCheck::VERSION}"
|
12
|
+
when options['h'] || options['help'] || args.empty?
|
13
|
+
puts 'usage: spellcheck [file]'
|
14
|
+
else
|
15
|
+
# TODO: 複数のファイルを引数で渡された時に全て実行するようにする
|
16
|
+
SpellCheck::CLI.run args.first
|
17
|
+
end
|
18
|
+
|
data/lib/spellcheck.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'terminal-table'
|
3
|
+
|
4
|
+
require 'spellcheck/cli'
|
5
|
+
require 'spellcheck/typo'
|
6
|
+
require 'spellcheck/report'
|
7
|
+
require 'spellcheck/color_string'
|
8
|
+
require 'spellcheck/version'
|
9
|
+
require 'spellcheck/filter'
|
10
|
+
require 'spellcheck/proof_reader'
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module SpellCheck
|
2
|
+
class CLI
|
3
|
+
def self.run(filepath)
|
4
|
+
begin
|
5
|
+
report = ProofReader.check(File.read(filepath))
|
6
|
+
|
7
|
+
if report.accept?
|
8
|
+
puts ColorString.green('All ok')
|
9
|
+
else
|
10
|
+
puts report
|
11
|
+
end
|
12
|
+
rescue Errno::ENOENT => ex
|
13
|
+
puts ex.message
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module SpellCheck
|
2
|
+
class ColorString
|
3
|
+
RED = 31
|
4
|
+
GREEN = 32
|
5
|
+
LIGHT_BLUE = 36
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def red(str)
|
9
|
+
colorize(str, RED)
|
10
|
+
end
|
11
|
+
|
12
|
+
def green(str)
|
13
|
+
colorize(str, GREEN)
|
14
|
+
end
|
15
|
+
|
16
|
+
def light_blue(str)
|
17
|
+
colorize(str, LIGHT_BLUE)
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def colorize(str, color_code)
|
23
|
+
"\e[#{color_code}m#{str}\e[0m"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module SpellCheck
|
2
|
+
class Filter
|
3
|
+
TYPO_PATTERN_LIST = {}
|
4
|
+
|
5
|
+
Dir.glob(File.expand_path('../patterns/**/*.yml', __FILE__)) do |f|
|
6
|
+
TYPO_PATTERN_LIST.merge!(YAML.load(File.read(f)))
|
7
|
+
end
|
8
|
+
|
9
|
+
# @param [String] string to be checked.
|
10
|
+
# @return [Hash] check result.
|
11
|
+
def self.spellcheck(word)
|
12
|
+
expected = TYPO_PATTERN_LIST[word.downcase]
|
13
|
+
|
14
|
+
if expected
|
15
|
+
{ correct: false, pattern: word, expected: expected }
|
16
|
+
else
|
17
|
+
{ correct: true, pattern: word, expected: '' }
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,517 @@
|
|
1
|
+
---
|
2
|
+
abamaTV: AbemaTV
|
3
|
+
abberant: aberrant
|
4
|
+
abberation: aberration
|
5
|
+
abbrieviated: abbreviated
|
6
|
+
abbriviated: abbreviated
|
7
|
+
abbriviation: abbreviation
|
8
|
+
abcess: abscess
|
9
|
+
aberation: aberration
|
10
|
+
aberrent: aberrant
|
11
|
+
abilites: abilities
|
12
|
+
angualrjs: AngularJS
|
13
|
+
anglarjs: AngularJS
|
14
|
+
abillity: ability
|
15
|
+
abilty: ability
|
16
|
+
abnormalites: abnormalities
|
17
|
+
abondon: abandon
|
18
|
+
abortificant: abortifacient
|
19
|
+
abreviate: abbreviate
|
20
|
+
abreviation: abbreviation
|
21
|
+
abritrary: arbitrary
|
22
|
+
abscence: absence
|
23
|
+
absense: absence
|
24
|
+
absorbancy: absorbency
|
25
|
+
absorbant: absorbent
|
26
|
+
absorbsion: absorption
|
27
|
+
absorbtion: absorption
|
28
|
+
absorpsion: absorption
|
29
|
+
absoulte: absolute
|
30
|
+
abudance: abundance
|
31
|
+
abundacies: abundances
|
32
|
+
abundancies: abundances
|
33
|
+
abundence: abundance
|
34
|
+
abundent: abundant
|
35
|
+
abundunt: abundant
|
36
|
+
abutts: abuts
|
37
|
+
acount: account
|
38
|
+
acadamy: academy
|
39
|
+
acadmic: academic
|
40
|
+
accadamy: academy
|
41
|
+
accademy: academy
|
42
|
+
accellerate: accelerate
|
43
|
+
accelleration: acceleration
|
44
|
+
acceptible: acceptable
|
45
|
+
accessable: accessible
|
46
|
+
accesed: accessed
|
47
|
+
accesory: accessory
|
48
|
+
accidentaly: accidentally
|
49
|
+
accidentially: accidentally
|
50
|
+
accidently: accidentally
|
51
|
+
acclimitization: acclimatization
|
52
|
+
accomadate: accommodate
|
53
|
+
accomadation: accommodation
|
54
|
+
accomodate: accommodate
|
55
|
+
accomodation: accommodation
|
56
|
+
accompaning: accompanying
|
57
|
+
accompanyed: accompanied
|
58
|
+
accordeon: accordion
|
59
|
+
accordian: accordion
|
60
|
+
accoring: according
|
61
|
+
accoustic: acoustic
|
62
|
+
accreditate: accredit
|
63
|
+
accros: across
|
64
|
+
accross: across
|
65
|
+
accussed: accused
|
66
|
+
acedemic: academic
|
67
|
+
acertain: ascertain
|
68
|
+
acess: access
|
69
|
+
acheive: achieve
|
70
|
+
acheived: achieved
|
71
|
+
acheivement: achievement
|
72
|
+
acheives: achieves
|
73
|
+
acheiving: achieving
|
74
|
+
acheivment: achievement
|
75
|
+
achievment: achievement
|
76
|
+
acolade: accolade
|
77
|
+
acomplish: accomplish
|
78
|
+
acomplished: accomplished
|
79
|
+
acomplishment: accomplishment
|
80
|
+
acording: according
|
81
|
+
acordingly: accordingly
|
82
|
+
acquaintence: acquaintance
|
83
|
+
acquiantence: acquaintance
|
84
|
+
acquiantences: acquaintances
|
85
|
+
acquistion: acquisition
|
86
|
+
acquited: acquitted
|
87
|
+
activites: activities
|
88
|
+
actualy: actually
|
89
|
+
acuracy: accuracy
|
90
|
+
acustom: accustom
|
91
|
+
acustommed: accustomed
|
92
|
+
acutally: actually
|
93
|
+
adaption: adaptation
|
94
|
+
adaptions: adaptations
|
95
|
+
addional: additional
|
96
|
+
addionally: additionally
|
97
|
+
additinally: additionally
|
98
|
+
additionaly: additionally
|
99
|
+
addittion: addition
|
100
|
+
addmission: admission
|
101
|
+
addmitted: admitted
|
102
|
+
addopt: adopt
|
103
|
+
addopted: adopted
|
104
|
+
addoptive: adoptive
|
105
|
+
addresable: addressable
|
106
|
+
addresing: addressing
|
107
|
+
addtion: addition
|
108
|
+
adecuate: adequate
|
109
|
+
adhear: adhere
|
110
|
+
adhearence: adherence
|
111
|
+
adition: addition
|
112
|
+
aditional: additional
|
113
|
+
admendment: amendment
|
114
|
+
administartion: administration
|
115
|
+
adminstrate: administrate
|
116
|
+
adminstration: administration
|
117
|
+
adminstrative: administrative
|
118
|
+
adminstrator: administrator
|
119
|
+
admissability: admissibility
|
120
|
+
admissable: admissible
|
121
|
+
admited: admitted
|
122
|
+
admiting: admitting
|
123
|
+
admitt: admit
|
124
|
+
adn: and
|
125
|
+
adolecent: adolescent
|
126
|
+
adquire: acquire
|
127
|
+
adquiring: acquiring
|
128
|
+
adres: address
|
129
|
+
adresable: addressable
|
130
|
+
adresing: addressing
|
131
|
+
adressable: addressable
|
132
|
+
advantagous: advantageous
|
133
|
+
advertisment: advertisement
|
134
|
+
advertisments: advertisements
|
135
|
+
adviced: advised
|
136
|
+
aeriel: aerial
|
137
|
+
aeriels: aerials
|
138
|
+
affadavit: affidavit
|
139
|
+
afficionado: aficionado
|
140
|
+
affilate: affiliate
|
141
|
+
affilliate: affiliate
|
142
|
+
affraid: afraid
|
143
|
+
affter: after
|
144
|
+
Afica: Africa
|
145
|
+
afteraffect: aftereffect
|
146
|
+
afther: after
|
147
|
+
againnst: against
|
148
|
+
agains: against
|
149
|
+
againsts: against
|
150
|
+
aggitate: agitate
|
151
|
+
aggree: agree
|
152
|
+
aggreement: agreement
|
153
|
+
aggregious: egregious
|
154
|
+
aggresive: aggressive
|
155
|
+
agian: again
|
156
|
+
aginst: against
|
157
|
+
agravate: aggravate
|
158
|
+
agre: agree
|
159
|
+
agred: agreed
|
160
|
+
agreing: agreeing
|
161
|
+
agress: agrees
|
162
|
+
agressive: aggressive
|
163
|
+
agressively: aggressively
|
164
|
+
agriculturalist: agriculturist
|
165
|
+
agriculturalists: agriculturists
|
166
|
+
agricultue: agriculture
|
167
|
+
agriculure: agriculture
|
168
|
+
agrieved: aggrieve
|
169
|
+
ahev: have
|
170
|
+
ahppen: happen
|
171
|
+
ahve: have
|
172
|
+
aiport: airport
|
173
|
+
airborn: airborne
|
174
|
+
airbourne: airborne
|
175
|
+
aircrafts: aircraft
|
176
|
+
airporta: airports
|
177
|
+
ajacent: adjacent
|
178
|
+
ajoin: adjoin
|
179
|
+
ajoining: adjoining
|
180
|
+
ajust: adjust
|
181
|
+
akward: awkward
|
182
|
+
albiet: albeit
|
183
|
+
alchohol: alcohol
|
184
|
+
alchoholic: alcoholic
|
185
|
+
alchol: alcohol
|
186
|
+
alcholic: alcoholic
|
187
|
+
alcohal: alcohol
|
188
|
+
alcoholical: alcoholic
|
189
|
+
aledge: allege
|
190
|
+
aledged: alleged
|
191
|
+
aledges: alleges
|
192
|
+
alege: allege
|
193
|
+
aleged: alleged
|
194
|
+
alegience: allegiance
|
195
|
+
algoritm: algorithm
|
196
|
+
algoritms: algorithms
|
197
|
+
allagory: allegory
|
198
|
+
allaince: alliance
|
199
|
+
alledge: allege
|
200
|
+
alledged: alleged
|
201
|
+
alledges: alleges
|
202
|
+
allegence: allegiance
|
203
|
+
allegience: allegiance
|
204
|
+
allign: align
|
205
|
+
allignment: alignment
|
206
|
+
alliviate: alleviate
|
207
|
+
allmost: almost
|
208
|
+
allong: along
|
209
|
+
allopone: allophone
|
210
|
+
allopones: allophones
|
211
|
+
alloted: allotted
|
212
|
+
alloting: allotting
|
213
|
+
allready: already
|
214
|
+
allso: also
|
215
|
+
alltogether: altogether
|
216
|
+
allways: always
|
217
|
+
almsot: almost
|
218
|
+
alochol: alcohol
|
219
|
+
alomst: almost
|
220
|
+
alos: also
|
221
|
+
alotted: allotted
|
222
|
+
alotting: allotting
|
223
|
+
alow: allow
|
224
|
+
alreayd: already
|
225
|
+
alsot: also
|
226
|
+
alsways: always
|
227
|
+
Altanta: Atlanta
|
228
|
+
altenative: alternative
|
229
|
+
alterated: altered
|
230
|
+
alterpiece: altarpiece
|
231
|
+
altho: although
|
232
|
+
althought: although
|
233
|
+
altough: although
|
234
|
+
aluminum: aluminium
|
235
|
+
aluvial: alluvial
|
236
|
+
alwasy: always
|
237
|
+
alwyas: always
|
238
|
+
amatuer: amateur
|
239
|
+
ambiance: ambience
|
240
|
+
ambiant: ambient
|
241
|
+
ambience: ambiance
|
242
|
+
ambigious: ambiguous
|
243
|
+
Ameircan: American
|
244
|
+
amenites: amenities
|
245
|
+
Amercia: America
|
246
|
+
Amercian: American
|
247
|
+
amendmant: amendment
|
248
|
+
amke: make
|
249
|
+
amking: making
|
250
|
+
assing: assign
|
251
|
+
ammass: amass
|
252
|
+
ammend: amend
|
253
|
+
ammended: amended
|
254
|
+
ammendment: amendment
|
255
|
+
ammenity: amenity
|
256
|
+
ammount: amount
|
257
|
+
amnisty: amnesty
|
258
|
+
amoung: among
|
259
|
+
amoungst: amongst
|
260
|
+
ampitheater: amphitheater
|
261
|
+
ampitheatre: amphitheatre
|
262
|
+
amung: among
|
263
|
+
Anahiem: Anaheim
|
264
|
+
analagous: analogous
|
265
|
+
analitic: analytic
|
266
|
+
analogeous: analogous
|
267
|
+
analogue: analog
|
268
|
+
anaylsis: analysis
|
269
|
+
anbd: and
|
270
|
+
ancester: ancestor
|
271
|
+
ancesteral: ancestral
|
272
|
+
ancilliary: ancillary
|
273
|
+
andd: and
|
274
|
+
andoid: android
|
275
|
+
andorid: android
|
276
|
+
andriod: android
|
277
|
+
androgenous: androgynous
|
278
|
+
androgeny: androgyny
|
279
|
+
anihilate: annihilate
|
280
|
+
anihilation: annihilation
|
281
|
+
aniversary: anniversary
|
282
|
+
ankel: ankle
|
283
|
+
annd: and
|
284
|
+
annoint: anoint
|
285
|
+
annonce: announce
|
286
|
+
annoncement: announcement
|
287
|
+
annouce: announce
|
288
|
+
annoucement: announcement
|
289
|
+
annualy: annually
|
290
|
+
annuled: annulled
|
291
|
+
anomolies: anomalies
|
292
|
+
anomolous: anomalous
|
293
|
+
anomoly: anomaly
|
294
|
+
anonimity: anonymity
|
295
|
+
anounce: announce
|
296
|
+
anouncement: announcement
|
297
|
+
ansalisation: nasalisation
|
298
|
+
ansalization: nasalization
|
299
|
+
Antartic: Antarctic
|
300
|
+
anthromorphization: anthropomorphization
|
301
|
+
anthropolgist: anthropologist
|
302
|
+
anthropolgy: anthropology
|
303
|
+
antropology: anthropology
|
304
|
+
anually: annually
|
305
|
+
anulled: annulled
|
306
|
+
anyhwere: anywhere
|
307
|
+
anytying: anything
|
308
|
+
anyways: anyway
|
309
|
+
apalca: alpaca
|
310
|
+
apach: apache
|
311
|
+
apalled: appalled
|
312
|
+
aparatus: apparatus
|
313
|
+
aparent: apparent
|
314
|
+
aparently: apparently
|
315
|
+
apear: appear
|
316
|
+
apearance: appearance
|
317
|
+
apeared: appeared
|
318
|
+
apearing: appearing
|
319
|
+
Apenines: Apennines
|
320
|
+
aplication: application
|
321
|
+
appication: application
|
322
|
+
appliction: application
|
323
|
+
applicaiton: application
|
324
|
+
applicatoin: application
|
325
|
+
aplied: applied
|
326
|
+
apoint: appoint
|
327
|
+
apolegetics: apologetics
|
328
|
+
apoligize: apologize
|
329
|
+
apparant: apparent
|
330
|
+
apparantly: apparently
|
331
|
+
appart: apart
|
332
|
+
appartmant: apartment
|
333
|
+
appartment: apartment
|
334
|
+
appearence: appearance
|
335
|
+
Appenines: Apennines
|
336
|
+
apperance: appearance
|
337
|
+
applicaiton: application
|
338
|
+
applicaitons: applications
|
339
|
+
appy: apply
|
340
|
+
applyed: applied
|
341
|
+
appologies: apologies
|
342
|
+
appologize: apologize
|
343
|
+
appology: apology
|
344
|
+
apporach: approach
|
345
|
+
appretiate: appreciate
|
346
|
+
apprieciate: appreciate
|
347
|
+
approachs: approaches
|
348
|
+
approch: approach
|
349
|
+
appropiate: appropriate
|
350
|
+
approperate: appropriate
|
351
|
+
approximatley: approximately
|
352
|
+
approximatly: approximately
|
353
|
+
approximently: approximately
|
354
|
+
approximitely: approximately
|
355
|
+
aproach: approach
|
356
|
+
aproximately: approximately
|
357
|
+
aproximation: approximation
|
358
|
+
aquaduct: aqueduct
|
359
|
+
aquaintance: acquaintance
|
360
|
+
aquainted: acquainted
|
361
|
+
aquarius: Aquarius
|
362
|
+
aquiantance: acquaintance
|
363
|
+
aquifier: aquifer
|
364
|
+
aquire: acquire
|
365
|
+
aquired: acquired
|
366
|
+
aquiring: acquiring
|
367
|
+
aquisition: acquisition
|
368
|
+
aquitted: acquitted
|
369
|
+
aranged: arranged
|
370
|
+
arangement: arrangement
|
371
|
+
arbitarily: arbitrarily
|
372
|
+
arbitary: arbitrary
|
373
|
+
archetect: architect
|
374
|
+
archetects: architects
|
375
|
+
archetectural: architectural
|
376
|
+
archetecturally: architecturally
|
377
|
+
archetecture: architecture
|
378
|
+
Archimedian: Archimedean
|
379
|
+
architechture: architecture
|
380
|
+
architectual: architectural
|
381
|
+
archivement: achievement
|
382
|
+
argubly: arguably
|
383
|
+
argueably: arguably
|
384
|
+
arguebly: arguably
|
385
|
+
arguement: argument
|
386
|
+
aries: Aries
|
387
|
+
arised: arose
|
388
|
+
arive: arrive
|
389
|
+
arrage: arrange
|
390
|
+
argment: argument
|
391
|
+
argments: arguments
|
392
|
+
arragement: arrangement
|
393
|
+
arrangment: arrangement
|
394
|
+
arrengement: arrangement
|
395
|
+
arrengements: arrangements
|
396
|
+
arround: around
|
397
|
+
artefact: artifact
|
398
|
+
artical: article
|
399
|
+
artice: article
|
400
|
+
aritcle: article
|
401
|
+
articel: article
|
402
|
+
artilce: article
|
403
|
+
ariticle: article
|
404
|
+
artifical: artificial
|
405
|
+
artifically: artificially
|
406
|
+
artificialy: artificially
|
407
|
+
artillary: artillery
|
408
|
+
ascendancy: ascendency
|
409
|
+
asend: ascend
|
410
|
+
asetic: ascetic
|
411
|
+
ashphalt: asphalt
|
412
|
+
asign: assign
|
413
|
+
asignee: assignee
|
414
|
+
asimilate: assimilate
|
415
|
+
askes: asks
|
416
|
+
aslo: also
|
417
|
+
asociate: associate
|
418
|
+
asociated: associated
|
419
|
+
asociation: association
|
420
|
+
asorbed: absorbed
|
421
|
+
asperations: aspirations
|
422
|
+
assasin: assassin
|
423
|
+
assasinate: assassinate
|
424
|
+
assasinated: assassinated
|
425
|
+
assasinates: assassinates
|
426
|
+
assasination: assassination
|
427
|
+
assasinations: assassinations
|
428
|
+
assasins: assassins
|
429
|
+
asscoiate: associate
|
430
|
+
assemple: assemble
|
431
|
+
assertation: assertion
|
432
|
+
asside: aside
|
433
|
+
assimiliated: assimilated
|
434
|
+
assinate: assassinate
|
435
|
+
assination: assassination
|
436
|
+
assisstance: assistance
|
437
|
+
assitance: assistance
|
438
|
+
assitant: assistant
|
439
|
+
assocation: association
|
440
|
+
assoicate: associate
|
441
|
+
assoicated: associated
|
442
|
+
assoicates: associates
|
443
|
+
assualt: assault
|
444
|
+
assumme: assume
|
445
|
+
assymetric: asymmetric
|
446
|
+
asyncronous: asynchronous
|
447
|
+
assymetry: asymmetry
|
448
|
+
asterick: asterisk
|
449
|
+
asteriks: asterisk
|
450
|
+
asteriod: asteroid
|
451
|
+
actino: action
|
452
|
+
asume: assume
|
453
|
+
atempt: attempt
|
454
|
+
athelete: athlete
|
455
|
+
atheletic: athletic
|
456
|
+
atheltic: athletic
|
457
|
+
Athenean: Athenian
|
458
|
+
Atheneans: Athenians
|
459
|
+
athiest: atheist
|
460
|
+
athlethe: athlete
|
461
|
+
athmosphere: atmosphere
|
462
|
+
athough: although
|
463
|
+
atlethe: athlete
|
464
|
+
atomsphere: atmosphere
|
465
|
+
atractions: attractions
|
466
|
+
atribute: attribute
|
467
|
+
atributed: attributed
|
468
|
+
atributes: attributes
|
469
|
+
attaction: attraction
|
470
|
+
attactive: attractive
|
471
|
+
attatch: attach
|
472
|
+
attemp: attempt
|
473
|
+
attemt: attempt
|
474
|
+
attemted: attempted
|
475
|
+
attemting: attempting
|
476
|
+
attendence: attendance
|
477
|
+
attendent: attendant
|
478
|
+
attendents: attendants
|
479
|
+
attent: attend
|
480
|
+
attept: attempt
|
481
|
+
attitide: attitude
|
482
|
+
attone: atone
|
483
|
+
attornies: attorneys
|
484
|
+
attorny: attorney
|
485
|
+
audeince: audience
|
486
|
+
audiance: audience
|
487
|
+
austrailia: Australia
|
488
|
+
australian: Australian
|
489
|
+
Australiasia: Australasia
|
490
|
+
auther: author
|
491
|
+
authobiographic: autobiographic
|
492
|
+
authobiography: autobiography
|
493
|
+
authorative: authoritative
|
494
|
+
authorites: authorities
|
495
|
+
authoritive: authoritative
|
496
|
+
autochtonous: autochthonous
|
497
|
+
autoctonous: autochthonous
|
498
|
+
autor: author
|
499
|
+
autority: authority
|
500
|
+
auxillaries: auxiliaries
|
501
|
+
auxillary: auxiliary
|
502
|
+
auxilliaries: auxiliaries
|
503
|
+
auxilliary: auxiliary
|
504
|
+
availabe: available
|
505
|
+
availiable: available
|
506
|
+
availible: available
|
507
|
+
avalable: available
|
508
|
+
avalance: avalanche
|
509
|
+
avaliable: available
|
510
|
+
avalible: available
|
511
|
+
avation: aviation
|
512
|
+
averageed: averaged
|
513
|
+
averege: average
|
514
|
+
awaked: awoke
|
515
|
+
awarness: awareness
|
516
|
+
awsome: awesome
|
517
|
+
awya: away
|