1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 09:44:24 +02:00

[hdl/en] Fix variable name typo (#4276)

This commit is contained in:
charly
2021-11-28 22:47:33 +01:00
committed by GitHub
parent 2ec43ca094
commit 3aa763520b

View File

@@ -123,7 +123,7 @@ CHIP And {
PARTS:
// Insert I and K into the nand gate and store the output in an internal
// wire called notOut.
Nand(a=i,b=b,out=notOut);
Nand(a=i,b=k,out=notOut);
// Use the not gate we constructed to invert notOut and send to the AND
// output.