diff --git a/docs/example-parsers-ip-address.html b/docs/example-parsers-ip-address.html index e5dd9cf3..476b388e 100644 --- a/docs/example-parsers-ip-address.html +++ b/docs/example-parsers-ip-address.html @@ -105,7 +105,7 @@ $('table').tablesorter({ <link rel="stylesheet" href="../css/theme.blue.css"> <script src="../js/jquery.tablesorter.js"></script> -<!-- load ipv6 parser --> +<!-- load mac, ipv4 and ipv6 parsers --> <script src="../js/parsers/parser-network.js"></script> <script> $(function() { @@ -116,8 +116,8 @@ $(function() { sortList: [[1, 0]], headers: { 1: { sorter: 'MAC' }, - // 2: { sorter: 'ipAddress' }, this parser is auto-detected - 3: { sorter: 'ipv6Address' } + // 2: { sorter: 'ipAddress' }, this parser is auto-detected (alias for 'ipv4Address') + 3: { sorter: 'ipv6Address' } // this parser is also auto-detected } });