File tree Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
- Copyright (C) 2015 Madhav Datt
1
+ Copyright (C) 2016 Madhav Datt
2
2
3
3
This program is free software; you can redistribute it and/or modify
4
4
it under the terms of the GNU General Public License as published by
Original file line number Diff line number Diff line change 1
1
# spell-check
2
2
C program to spell-check and auto-correct documents (text files).
3
+
4
+ ## Checking Documents
5
+ ### Downloading
6
+
7
+ ### Usage
8
+
9
+ ## Benchmarks
10
+ ### Speed
11
+
12
+ ### Autocorrect Accuracy
Original file line number Diff line number Diff line change 13
13
*
14
14
* Based on probability theory from http://norvig.com/spell-correct.html
15
15
*
16
- * Copyright (C) 2015 Madhav Datt
16
+ * Copyright (C) 2016 Madhav Datt
17
17
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
18
18
*
19
19
*/
Original file line number Diff line number Diff line change 10
10
* AUTOCORR_size_data - give number of unique words in word frequency data
11
11
* AUTOCORR_unload_words - unload word hash table to free memory
12
12
*
13
- * Copyright (C) 2015 Madhav Datt
13
+ * Copyright (C) 2016 Madhav Datt
14
14
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
15
15
*
16
16
*/
Original file line number Diff line number Diff line change 2
2
# Makefile for spellcheck program
3
3
# Typing 'make' or 'make spellcheck' will create the executable file.
4
4
#
5
- # Copyright (C) 2015 Madhav Datt
5
+ # Copyright (C) 2016 Madhav Datt
6
6
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
7
7
#
8
8
Original file line number Diff line number Diff line change 5
5
* Checks spelling of text document contents word-by-word.
6
6
* Autocorrect suggestions for incorrectly spelled words from text files.
7
7
*
8
- * Copyright (C) 2015 Madhav Datt
8
+ * Copyright (C) 2016 Madhav Datt
9
9
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10
10
*
11
11
*/
You can’t perform that action at this time.
0 commit comments