fix typo in xnor gate

This commit is contained in:
2025-06-28 13:55:14 -03:00
parent ea8277ee5b
commit 71f128f6c9
3 changed files with 5 additions and 5 deletions

View File

@ -15,6 +15,6 @@
#import "elements/logic/iec_and.typ": iec-gate-and, iec-gate-nand
#import "elements/logic/iec_buf.typ": iec-gate-buf, iec-gate-not
#import "elements/logic/iec_or.typ": iec-gate-or, iec-gate-nor
#import "elements/logic/iec_xor.typ": iec-gate-xor, iec-gate-nxor
#import "elements/logic/iec_xor.typ": iec-gate-xor, iec-gate-xnor
#import "elements/group.typ": group

View File

@ -34,11 +34,11 @@
)
}
/// Draws an IEC-NXOR gate. This function is also available as `element.iec-gate-nxor()`
/// Draws an IEC-XNOR gate. This function is also available as `element.iec-gate-xnor()`
///
/// For parameters, see #doc-ref("gates.iec-gate")
/// #examples.iec-gate-nxor
#let iec-gate-nxor(
/// #examples.iec-gate-xnor
#let iec-gate-xnor(
x: none,
y: none,
w: none,

View File

@ -7,4 +7,4 @@
#import "elements/logic/iec_and.typ": iec-gate-and, iec-gate-nand
#import "elements/logic/iec_or.typ": iec-gate-or, iec-gate-nor
#import "elements/logic/iec_buf.typ": iec-gate-buf, iec-gate-not
#import "elements/logic/iec_xor.typ": iec-gate-xor, iec-gate-nxor
#import "elements/logic/iec_xor.typ": iec-gate-xor, iec-gate-xnor