Skip to content

Update some links and fix a codespell typo #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/controller_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
],
0x454E: [
{'name': 'DMX USB Pro',
'link': 'http://www.enttec.com/index.php?main_menu=Products&pn=70304',
'link': 'https://www.enttec.com/products/controls/dmx-usb/dmx-usb-pro/',
'image_url': 'http://www.enttec.com/img/dmxusbpro/flip.gif',
'tags': ['tool', 'USB']},
{'name': 'RDM USB Pro',
Expand Down
2 changes: 1 addition & 1 deletion data/software_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
SOFTWARE_DATA = {
0x454E: [
{'name': 'ENTTEC RDM Controller',
'link': 'http://www.enttec.com/index.php?main_menu=Products&pn=70531&show=description&name=rdmcontroller',
'link': 'https://www.enttec.com/products/controls/rdm/rdm-controller/',
'image_url': 'http://www.enttec.com/img/rdm/cr_sum_small.png',
'tags': ['Windows']},
],
Expand Down
3 changes: 2 additions & 1 deletion js_src/rdm.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,8 @@ angular.module('rdmApp', [])
var data = return_data[1];

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

Expand Down
2 changes: 1 addition & 1 deletion unit-test-js/tests/rdm.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('rdmApp', function() {
converter.euid = '';
converter.convertToUID();
expect(converter.error).toEqual(
'Invalid EUID: insufficent data, should be 16 bytes');
'Invalid EUID: incorrect amount of data, should be 16 bytes');
expect(converter.uid).toEqual('');
});

Expand Down