Skip to content

Commit 968ec08

Browse files
committed
update readme
2 parents e004082 + bf6ffca commit 968ec08

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2015 Madhav Datt
1+
Copyright (C) 2016 Madhav Datt
22

33
This program is free software; you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
# spell-check
22
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

autocorrect-lib/autocorrect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* Based on probability theory from http://norvig.com/spell-correct.html
1515
*
16-
* Copyright (C) 2015 Madhav Datt
16+
* Copyright (C) 2016 Madhav Datt
1717
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1818
*
1919
*/

autocorrect-lib/autocorrect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* AUTOCORR_size_data - give number of unique words in word frequency data
1111
* AUTOCORR_unload_words - unload word hash table to free memory
1212
*
13-
* Copyright (C) 2015 Madhav Datt
13+
* Copyright (C) 2016 Madhav Datt
1414
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1515
*
1616
*/

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Makefile for spellcheck program
33
# Typing 'make' or 'make spellcheck' will create the executable file.
44
#
5-
# Copyright (C) 2015 Madhav Datt
5+
# Copyright (C) 2016 Madhav Datt
66
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
77
#
88

src/speller.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Checks spelling of text document contents word-by-word.
66
* Autocorrect suggestions for incorrectly spelled words from text files.
77
*
8-
* Copyright (C) 2015 Madhav Datt
8+
* Copyright (C) 2016 Madhav Datt
99
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1010
*
1111
*/

0 commit comments

Comments
 (0)