From efa3496e1daa41c31c4b7fa12414e724b6d82abf Mon Sep 17 00:00:00 2001 From: Chris Bosse <30784811+chrisBosse@users.noreply.github.com> Date: Thu, 17 Nov 2022 23:17:53 -0500 Subject: [PATCH] Apply spelling corrections to code sections --- pages/02.part-1/04.data-link-layer/docs.md | 2 +- pages/02.part-1/05.application-layer/docs.md | 12 ++++++------ pages/04.appendix/07.bert-details/docs.md | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages/02.part-1/04.data-link-layer/docs.md b/pages/02.part-1/04.data-link-layer/docs.md index 1698b76..debc540 100644 --- a/pages/02.part-1/04.data-link-layer/docs.md +++ b/pages/02.part-1/04.data-link-layer/docs.md @@ -47,7 +47,7 @@ graph LR
Figure 7 Receive Payload to Contents
[mermaid] graph LR - payload[Payoad] -- Type 4 bits --> fec[ECC/FEC Decode] -- Type 1 bits--> contents[Data Link Layer Contents] + payload[Payload] -- Type 4 bits --> fec[ECC/FEC Decode] -- Type 1 bits--> contents[Data Link Layer Contents] style contents fill:#ffffffff,stroke:#ffffffff,stroke-width:0px style fec fill:#fff,stroke:#000,stroke-width:2px style payload fill:#ffffffff,stroke:#ffffffff,stroke-width:0px diff --git a/pages/02.part-1/05.application-layer/docs.md b/pages/02.part-1/05.application-layer/docs.md index 5101da2..8b40b93 100644 --- a/pages/02.part-1/05.application-layer/docs.md +++ b/pages/02.part-1/05.application-layer/docs.md @@ -185,14 +185,14 @@ $01_2$ | $x^{16} + x^{15} + x^{13} + x^4 + 1$ | 16 bits | 65,535 $10_2$ | $x^{24} + x^{23} + x^{22} + x^{17} + 1$ | 24 bits | 16,777,215 --- -
Figure 16 8-bit LSFR taps
-![LSFR_8](LFSR_8.svg?classes=caption "8-bit LSFR taps") +
Figure 16 8-bit LFSR taps
+![LFSR_8](LFSR_8.svg?classes=caption "8-bit LFSR taps") --- -
Figure 17 16-bit LSFR taps
-![LSFR_16](LFSR_16.svg?classes=caption "16-bit LSFR taps") +
Figure 17 16-bit LFSR taps
+![LFSR_16](LFSR_16.svg?classes=caption "16-bit LFSR taps") --- -
Figure 18 24-bit LSFR taps
-![LSFR_24](LFSR_24.svg?classes=caption "24-bit LSFR taps") +
Figure 18 24-bit LFSR taps
+![LFSR_24](LFSR_24.svg?classes=caption "24-bit LFSR taps") ##### Advanced Encryption Standard (AES) diff --git a/pages/04.appendix/07.bert-details/docs.md b/pages/04.appendix/07.bert-details/docs.md index 205cccb..0fd2994 100644 --- a/pages/04.appendix/07.bert-details/docs.md +++ b/pages/04.appendix/07.bert-details/docs.md @@ -80,10 +80,10 @@ the overall bit error rate. ... static constexpr uint8_t LOCK_COUNT = 18; // 18 consecutive good bits. ... - // PRBS Syncronizer. Returns 0 if the bit matches the PRBS, otherwise 1. + // PRBS Synchronizer. Returns 0 if the bit matches the PRBS, otherwise 1. // When synchronizing the LFSR used in the PRBS, a single bad input bit // will result in 3 error bits being emitted, one for each tap in the LFSR. - bool syncronize(bool bit) + bool synchronize(bool bit) { bool result = (bit ^ (state >> TAP_1) ^ (state >> TAP_2)) & 1; state = ((state << 1) | bit) & MASK;