Skip to content

Commit

Permalink
chore: Fix spelling and formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Aug 29, 2023
1 parent 8156ebd commit c92ee9d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions .codespellignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ sord
doubleClick
sur
jus
requestor
7 changes: 7 additions & 0 deletions .codespellignorelines
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,10 @@ void EngineEffectsDelay::process(CSAMPLE* pInOut,
effectsDelay.process(pInOut.data(), bufferSizeInSamples);
} else if (!strcmp(pavInputFormat->name, "caf")) {
list.append("caf");
// Adopted from Csound code at http://www.kunstmusik.com/udo/cache/moogladder.udo
<< "-alac.caf"
// Test fails for file type "caf" supported by SoundSourceSndfile
//QStringLiteral("caf"),
// Source: FIPS 180-4 Secure Hash Standard (SHS)
// ALAC/CAF has been added in version 1.0.26
QStringLiteral("caf"),
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# because it won't prevent catching other, unrelated issues.

# _anlz.h/_pdb.h: Header files generated by Kaitai Struct
exclude: ^(lib/|src/test/.*data/).*|res/translations/.*\.ts|src/.*_(anlz|pdb)\.h$
exclude: ^(lib/|src/test/.*data/).*|res/controllers/lodash\.mixxx\.js|res/translations/.*\.ts|src/.*_(anlz|pdb)\.h$
minimum_pre_commit_version: 2.21.0
default_language_version:
python: python3
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ they are doing - politely bringing their behavior to their attention is
encouraged.

If you are uncomfortable speaking up, or feel that your concerns are not being
duly considered, you can email [email protected] to request involvement
duly considered, you can email <[email protected]> to request involvement
from a community manager. You may also email any of the community managers
directly. All concerns shared with community managers will be kept
confidential. In cases where a public response is deemed necessary, the
Expand Down
2 changes: 1 addition & 1 deletion res/controllers/Roland_DJ-505-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ DJ505.Sampler = function() {
*
* 1. Standalone mode
*
* When the controller is in standlone mode, the controller's TR-S works
* When the controller is in standalone mode, the controller's TR-S works
* with the SERATO SAMPLER and SYNC functionality disabled. Also, it's not
* possible to apply FX to the TR-S output signal. The TR/SAMPLER LEVEL
* knob can be used to adjust the volume of the output.
Expand Down
2 changes: 1 addition & 1 deletion src/engine/sync/synccontrol.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class SyncControl : public EngineControl, public Syncable {
mixxx::Bpm getLocalBpm() const;

QString m_sGroup;
// The only reason we have this pointer is an optimzation so that the
// The only reason we have this pointer is an optimization so that the
// EngineSync can ask us what our EngineChannel is. EngineMaster in turn
// asks EngineSync what EngineChannel is the "leader" channel.
EngineChannel* m_pChannel;
Expand Down
2 changes: 1 addition & 1 deletion src/library/dao/playlistdao.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class PlaylistDAO : public QObject, public virtual DAO {
bool deleteUnlockedPlaylists(QStringList&& idStringList);
/// Delete Playlists with fewer entries then "minNumberOfTracks"
/// Needs to be called inside a transaction.
/// @return true on success, flase on error
/// @return true on success, false on error
bool deleteAllUnlockedPlaylistsWithFewerTracks(const PlaylistDAO::HiddenType type,
int minNumberOfTracks);
// Rename a playlist
Expand Down
1 change: 0 additions & 1 deletion tools/json2github.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,6 @@ def run_import(self, lp_issues, lp_milestones):
):
gh_issue_number = issuedata.get("gh_issue_number")
if gh_issue_number:

issue_milestone = issuedata["milestone"]

if (
Expand Down

0 comments on commit c92ee9d

Please sign in to comment.