diff options
| author | Nic McDonald | 2021-10-12 15:25:55 -0600 |
|---|---|---|
| committer | GitHub | 2021-10-12 21:25:55 +0000 |
| commit | ffa0831c736c7d5296964bc65536ac256220dcaa (patch) | |
| tree | 2c88c7125e5aef486747ee5bf3d46940ccf00f07 /src | |
| parent | 56df24b9c5664bc9a9285b780d4376b2d8d93dca (diff) | |
Fix GaloisLFSR comments (#2178)
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/chisel3/util/random/GaloisLFSR.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/chisel3/util/random/GaloisLFSR.scala b/src/main/scala/chisel3/util/random/GaloisLFSR.scala index 0d407c87..68346e82 100644 --- a/src/main/scala/chisel3/util/random/GaloisLFSR.scala +++ b/src/main/scala/chisel3/util/random/GaloisLFSR.scala @@ -13,7 +13,7 @@ import chisel3._ * * $seedExplanation * - * In the example below, a 4-bit LFSR Fibonacci LFSR is constructed. The tap points are defined as four and three + * In the example below, a 4-bit LFSR Galois LFSR is constructed. The tap points are defined as four and three * (using LFSR convention of indexing from one). This results in the hardware configuration shown in the diagram. * * {{{ @@ -85,7 +85,7 @@ class MaxPeriodGaloisLFSR(width: Int, seed: Option[BigInt] = Some(1), reduction: */ object GaloisLFSR { - /** Return a pseudorandom [[UInt]] generated from a [[FibonacciLFSR]]. + /** Return a pseudorandom [[UInt]] generated from a [[GaloisLFSR]]. * $paramWidth * $paramTaps * $paramIncrement |
