Skip to content

Commit 1310c5d

Browse files
authored
Merge pull request #194 from peternewman/dump-fixes
Update some links and fix a codespell typo
2 parents d80a41d + d0832e9 commit 1310c5d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

data/controller_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
],
109109
0x454E: [
110110
{'name': 'DMX USB Pro',
111-
'link': 'http://www.enttec.com/index.php?main_menu=Products&pn=70304',
111+
'link': 'https://www.enttec.com/products/controls/dmx-usb/dmx-usb-pro/',
112112
'image_url': 'http://www.enttec.com/img/dmxusbpro/flip.gif',
113113
'tags': ['tool', 'USB']},
114114
{'name': 'RDM USB Pro',

data/software_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SOFTWARE_DATA = {
2121
0x454E: [
2222
{'name': 'ENTTEC RDM Controller',
23-
'link': 'http://www.enttec.com/index.php?main_menu=Products&pn=70531&show=description&name=rdmcontroller',
23+
'link': 'https://www.enttec.com/products/controls/rdm/rdm-controller/',
2424
'image_url': 'http://www.enttec.com/img/rdm/cr_sum_small.png',
2525
'tags': ['Windows']},
2626
],

js_src/rdm.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,8 @@ angular.module('rdmApp', [])
506506
var data = return_data[1];
507507

508508
if (data.length !== RDM.EUID_SIZE) {
509-
$scope.error = 'Invalid EUID: insufficent data, should be 16 bytes';
509+
$scope.error = 'Invalid EUID: incorrect amount of data, should be ' +
510+
'16 bytes';
510511
return;
511512
}
512513

unit-test-js/tests/rdm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('rdmApp', function() {
6969
converter.euid = '';
7070
converter.convertToUID();
7171
expect(converter.error).toEqual(
72-
'Invalid EUID: insufficent data, should be 16 bytes');
72+
'Invalid EUID: incorrect amount of data, should be 16 bytes');
7373
expect(converter.uid).toEqual('');
7474
});
7575

0 commit comments

Comments
 (0)