Module: wine Branch: master Commit: b3c254cd75564b2f0169eadf431612a59475fe2a URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3c254cd75564b2f0169eadf43...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Tue May 3 16:58:33 2016 +0300
dbghelp: Fix a typo in comment.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dbghelp/crc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/crc32.c b/dlls/dbghelp/crc32.c index e1f604e..73042fe 100644 --- a/dlls/dbghelp/crc32.c +++ b/dlls/dbghelp/crc32.c @@ -58,7 +58,7 @@ /* order from highest-order term to lowest-order term. UARTs transmit */ /* characters in order from LSB to MSB. By storing the CRC this way, */ /* we hand it to the UART in the order low-byte to high-byte; the UART */ -/* sends each low-bit to hight-bit; and the result is transmission bit */ +/* sends each low-bit to high-bit; and the result is transmission bit */ /* by bit from highest- to lowest-order term without requiring any bit */ /* shuffling on our part. Reception works similarly. */