-
Notifications
You must be signed in to change notification settings - Fork 126
typo correction #437
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
base: main
Are you sure you want to change the base?
typo correction #437
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,6 +31,7 @@ table:: | |
| :: | ||
| defaults to lowpass. | ||
|
|
||
| argument::saturation | ||
|
|
||
| Examples:: | ||
|
|
||
|
|
@@ -44,7 +45,8 @@ z = { | |
| MouseY.kr(1.0, 0.0, \linear), // q | ||
| 0, // mode - lowpass | ||
| 0.25); // mul | ||
| }.play) | ||
| }.play | ||
| ) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR corrects the incorrect placement of a closing parenthesis. |
||
| z.release; | ||
|
|
||
| ( | ||
|
|
@@ -57,7 +59,8 @@ z = { | |
| MouseY.kr(1,0,\linear), | ||
| 0); // filter mode - lowpass | ||
| (CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5); | ||
| }.play) | ||
| }.play | ||
| ) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR corrects the incorrect placement of a closing parenthesis. |
||
| z.release | ||
|
|
||
| ( | ||
|
|
@@ -70,7 +73,8 @@ z = { | |
| MouseY.kr(1,0,\linear), | ||
| 1); // filter mode - highpass | ||
| (CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5); | ||
| }.play) | ||
| }.play | ||
| ) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR corrects the incorrect placement of a closing parenthesis. |
||
| z.release | ||
|
|
||
| ( | ||
|
|
@@ -83,7 +87,8 @@ z = { | |
| MouseY.kr(1,0,\linear), | ||
| 2); // filter mode - bandpass | ||
| (CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5); | ||
| }.play) | ||
| }.play | ||
| ) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR corrects the incorrect placement of a closing parenthesis. |
||
| z.release | ||
|
|
||
| ( | ||
|
|
@@ -96,10 +101,11 @@ z = { | |
| MouseY.kr(1,0,\linear), | ||
| LFSaw.kr(1,0,3)); // filter mode - sweep modes | ||
| (CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5); | ||
| }.play) | ||
| }.play | ||
| ) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR corrects the incorrect placement of a closing parenthesis. |
||
| z.release | ||
|
|
||
| // bhob's benchmark ;) | ||
| // bhob's benchmark | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This might be preserved now. |
||
| ( | ||
| z = { | ||
| var sig; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -116,7 +116,7 @@ LPCAnalyzer.ar(input,source, 64,MouseX.kr(1,64), windowtype:1) | |
|
|
||
| ////////////////////////////////////// | ||
|
|
||
| //residual test assumes windowtype 0) | ||
| //residual test assumes windowtype 0: | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why should the closing parenthesis be placed here? |
||
| ( | ||
| { | ||
| var input,source; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Except for this change, I don't think we need the rest of this PR anymore, since the help browser code selection was fixed, what do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, I don’t think so. Please see my comments on each change.