Fix doc comment

This commit is contained in:
Sean Bowe 2018-04-07 20:56:28 -06:00
parent 68c4bdb6ef
commit d60a14b08b
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031

@ -404,7 +404,7 @@ impl PartialEq for MPCParameters {
impl MPCParameters { impl MPCParameters {
/// Create new Groth16 parameters (compatible with bellman) for a /// Create new Groth16 parameters (compatible with bellman) for a
/// given circuit. The resulting parameters are unsafe to use /// given circuit. The resulting parameters are unsafe to use
/// until there are contributions (see `transform`). /// until there are contributions (see `contribute()`).
pub fn new<C>( pub fn new<C>(
circuit: C, circuit: C,
) -> Result<MPCParameters, SynthesisError> ) -> Result<MPCParameters, SynthesisError>