Skip to content

Commit 20ba0f9

Browse files
committed
1.1: spelling corrections
1 parent 877e83d commit 20ba0f9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
CC = gcc
22
CFLAGS = -Wall -std=c99
33
LDFLAGS = -lm -s
4-
PROGS = hemingenc hemingdec
4+
PROGS = hammingenc hammingdec
55

66
all: $(PROGS)
77

8-
hemingenc: union_heming.c
8+
hammingenc: hammingenc.c
99
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
1010

11-
hemingdec: union_deheming.c
11+
hammingdec: hammingdec.c
1212
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
1313

1414
clean: $(PROGS)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Familiarization with the Hamming method of error-correcting coding, which allows
55
# USAGE
66

77
```sh
8-
./hemingenc input.file output.hmng [8/12/16/32/64]
9-
./hemingdec input.hmng output.file [8/12/16/32/64]
8+
./hammingenc input.file output.hmng [8/12/16/32/64]
9+
./hammingdec input.hmng output.file [8/12/16/32/64]
1010
```
1111

1212
2019
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)