summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ap-ec-comm.md2
-rw-r--r--docs/packetized-console.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ap-ec-comm.md b/docs/ap-ec-comm.md
index 27d5349ca4..a18cf38824 100644
--- a/docs/ap-ec-comm.md
+++ b/docs/ap-ec-comm.md
@@ -128,7 +128,7 @@ embedded controllers either aren't fast enough or don't have any support for
hardware flow-control.
It works like this: When the AP sends a byte to the EC, if the EC doesn't have a
-response queued up in advance, a default "dummy" byte is returned. The EC
+response queued up in advance, a default "placeholder" byte is returned. The EC
preconfigures that default response byte to indicate its status (ready, busy,
waiting for more input, etc.). Once the AP has sent a complete command message,
it continues clocking bytes to the EC (which the EC ignores) and just looks at
diff --git a/docs/packetized-console.md b/docs/packetized-console.md
index b14404bf3e..44ad580d13 100644
--- a/docs/packetized-console.md
+++ b/docs/packetized-console.md
@@ -109,7 +109,7 @@ struct console_packet {
/* Set if the sender had to discard packets due to buffer overflow. */
uint8_t overflow : 1;
- uint8_t dummy : 3;
+ uint8_t placeholder : 3;
/* Channel; values from enum console_channel */
uint8_t channel;