rename iec gates to have consistent naming

This commit is contained in:
2025-06-28 12:28:28 -03:00
parent c5e4f8039a
commit ea8277ee5b
7 changed files with 36 additions and 36 deletions

View File

@ -4,8 +4,8 @@
/// Draws an IEC-XOR gate. This function is also available as `element.iec-gate-xor()`
///
/// For parameters, see #doc-ref("gates.iec-gate")
/// #examples.gate-iec-xor
#let gate-iec-xor(
/// #examples.iec-gate-xor
#let iec-gate-xor(
x: none,
y: none,
w: none,
@ -37,8 +37,8 @@
/// Draws an IEC-NXOR gate. This function is also available as `element.iec-gate-nxor()`
///
/// For parameters, see #doc-ref("gates.iec-gate")
/// #examples.gate-iec-nxor
#let gate-iec-nxor(
/// #examples.iec-gate-nxor
#let iec-gate-nxor(
x: none,
y: none,
w: none,
@ -52,7 +52,7 @@
ports: false
)
) = {
gate-iec-xor(
iec-gate-xor(
x: x,
y: y,
w: w,