Skip to content

Commit 0475ea0

Browse files
committed
Fix typo
1 parent b81fda6 commit 0475ea0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

debounce_v1.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// INFO ------------------------------------------------------------------------
88
// Button debounce v1
99
//
10-
// - sampling inputs using configurable divided clock (ithis is the
10+
// - sampling inputs using configurable divided clock (this is the
1111
// simplest form of low-pass filter)
1212
// - switching output only when both samples have equal level
1313
// (this gives some form of hysteresis in case we sample unstable data)

debounce_v2.sv

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// INFO ------------------------------------------------------------------------
88
// Button debounce v2, SystemVerilog version
99
//
10-
// - sampling inputs using configurable divided clock (ithis is the
10+
// - sampling inputs using configurable divided clock (this is the
1111
// simplest form of low-pass filter)
1212
//
1313
// - in contrast with debounce_v1.v this implementation is switching output only

debounce_v2.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// INFO ------------------------------------------------------------------------
88
// Button debounce v2
99
//
10-
// - sampling inputs using configurable divided clock (ithis is the
10+
// - sampling inputs using configurable divided clock (this is the
1111
// simplest form of low-pass filter)
1212
//
1313
// - in contrast with debounce_v1.v this implementation is switching output only

0 commit comments

Comments
 (0)