Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ impl Fq2 {
Fq2(fields::Fq2::zero())
}

/// Initalizes new F_q2(a + bi, a is real coeff, b is imaginary)
/// Initializes new F_q2(a + bi, a is real coeff, b is imaginary)
pub fn new(a: Fq, b: Fq) -> Fq2 {
Fq2(fields::Fq2::new(a.0, b.0))
}
Expand Down