Merge pull request #774 from zhiqiangxu/fix_typo

fix typo
This commit is contained in:
ying tong 2023-05-24 01:32:29 +08:00 committed by GitHub
commit 76b3f892a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ impl TryFrom<Column<Any>> for Column<Instance> {
/// # let config: Config = todo!();
/// layouter.assign_region(|| "bar", |mut region| {
/// region.assign_advice(|| "a", config.a, 0, || Value::known(F::ONE))?;
/// region.assign_advice(|| "a", config.b, 1, || Value::known(F::ONE))?;
/// region.assign_advice(|| "b", config.b, 1, || Value::known(F::ONE))?;
/// config.s.enable(&mut region, 1)
/// })?;
/// Ok(())