Auto merge of #13 - ebfull:fix-comment, r=ebfull

Fix comment about sqrt.

Still just testing CI stuff.
This commit is contained in:
bmerge 2017-06-19 22:40:09 +00:00
commit e282bc095a
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ pub trait Field<E: Engine>: Sized +
pub trait SqrtField<E: Engine>: Field<E>
{
/// Returns the square root of the field element, if it is
/// Returns a square root of the field element, if it is
/// quadratic residue.
fn sqrt(&self, engine: &E) -> Option<Self>;
}