Skip to content

Commit af093c6

Browse files
sweeksBigBluelucasphillips
authored andcommitted
Fixing typos and removing uneeded signal
1 parent 83ee191 commit af093c6

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

lib/src/arithmetic/floating_point/floating_point_sqrt.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ abstract class FloatingPointSqrt<FpType extends FloatingPoint> extends Module {
2323

2424
/// The [clk] : if a non-null clock signal is passed in, a pipestage is added
2525
/// to the square root to help optimize frequency.
26-
/// Plummed for future work for pipelining, currently unsupported.
26+
/// Plumbed for future work for pipelining, currently unsupported.
2727
@protected
2828
late final Logic? clk;
2929

3030
/// Optional [reset], used only if a [clk] is not null to reset the pipeline
3131
/// flops.
32-
/// Plummed for future work for pipelining, currently unsupported.
32+
/// Plumbed for future work for pipelining, currently unsupported.
3333
@protected
3434
late final Logic? reset;
3535

3636
/// Optional [enable], used only if a [clk] is not null to enable the pipeline
3737
/// flops.
38-
/// Plummed for future work for pipelining, currently unsupported.
38+
/// Plumbed for future work for pipelining, currently unsupported.
3939
@protected
4040
late final Logic? enable;
4141

@@ -50,9 +50,6 @@ abstract class FloatingPointSqrt<FpType extends FloatingPoint> extends Module {
5050
/// getter for the [error] output.
5151
late final Logic error = Logic(name: 'error')..gets(output('error'));
5252

53-
/// The internal error signal to pass through
54-
late final Logic errorSig;
55-
5653
/// Square root a floating point number [a], returning result in [sqrt].
5754
/// - [clk], [reset], [enable] are optional inputs to control a pipestage
5855
/// (only inserted if [clk] is provided)

0 commit comments

Comments
 (0)