aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/uip
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-09 20:33:56 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-09 20:33:56 +0000
commit3808f5c36d0ee183e9825e645cc984f1c6047ef5 (patch)
treea7830d3c19aeb6a2461d701245458217e8829767 /Projects/Webserver/Lib/uip
parent544027da185fbfb51461460c607f956ccee9e54b (diff)
downloadlufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.gz
lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.bz2
lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.zip
Spell check source code, fix mistakes.
Diffstat (limited to 'Projects/Webserver/Lib/uip')
-rw-r--r--Projects/Webserver/Lib/uip/uip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Webserver/Lib/uip/uip.c b/Projects/Webserver/Lib/uip/uip.c
index 94171adad..dccefdd1c 100644
--- a/Projects/Webserver/Lib/uip/uip.c
+++ b/Projects/Webserver/Lib/uip/uip.c
@@ -53,7 +53,7 @@
* statement. While it would be possible to break the uip_process()
* function into many smaller functions, this would increase the code
* size because of the overhead of parameter passing and the fact that
- * the optimiser would not be as efficient.
+ * the optimizer would not be as efficient.
*
* The principle is that we have a small buffer, called the uip_buf,
* in which the device driver puts an incoming packet. The TCP/IP
@@ -330,7 +330,7 @@ upper_layer_chksum(u8_t proto)
upper_layer_len = (((u16_t)(BUF->len[0]) << 8) + BUF->len[1]) - UIP_IPH_LEN;
#endif /* UIP_CONF_IPV6 */
- /* First sum pseudoheader. */
+ /* First sum pseudo-header. */
/* IP protocol and length fields. This addition cannot carry. */
sum = upper_layer_len + proto;