From 3931dbed3dd0b14fa7dee51752bf1b81293ffc7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B0=D0=BC=D0=BF=D1=83=D1=88=D0=B0?= Date: Fri, 29 Jun 2018 11:50:16 +0300 Subject: [PATCH] Update crc16.js --- crc16.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crc16.js b/crc16.js index 7019344..fb37971 100644 --- a/crc16.js +++ b/crc16.js @@ -2,7 +2,7 @@ * Calculate CRC16 checksum * Code ported to JavaScript from Java * - * Oryginal source: + * Original source: * http://introcs.cs.princeton.edu/java/51data/CRC16.java.html * CRC16-CCIT for 123456789 = 29b1 * @@ -55,4 +55,4 @@ function crc16(charach) { } return crc.toString(16); -} \ No newline at end of file +}