Skip to content

Commit

Permalink
Merge pull request #4162 from snappizz/topic/cherrypick
Browse files Browse the repository at this point in the history
Cherrypick several documentation PRs onto 3.10
  • Loading branch information
mossheim authored Nov 19, 2018
2 parents 9bec036 + 0109317 commit 4002f5b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Please be as descriptive as possible when creating an issue. In order for us to
### Making changes

- Make commits of logical units.
- Please refer to [Code Style Guide](https://github.com/supercollider/supercollider/wiki/%5BWIP%5D-Code-style-guidelines). Note that code style, such as whitespace conventions, depend on the language (`C++` vs `SuperCollider` vs `SCDoc Markup`)
- Please refer to [Code Style Guide](https://github.com/supercollider/supercollider/wiki/Code-style-guidelines). Note that code style, such as whitespace conventions, depend on the language (`C++` vs `SuperCollider` vs `SCDoc Markup`)
- Make sure your commit messages are descriptive and in the proper format.
- Commit messages follow the schema "category: content", e.g. `docs: Make the example in CONTRIBUTING imperative and concrete`, or `help: Update RunningSum2 help file`, or `class library: do this and that`, or `plugins: add missing function definition`.
- A more complete example:
Expand Down
2 changes: 1 addition & 1 deletion HelpSource/Classes/FileDialog.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ FileDialog({ |path|
// Passing `fileMode: 3` makes it possible to select multiple files.
(
FileDialog({ |paths|
postln("Selected paths:);
postln("Selected paths:");
paths.do(_.postln);
}, fileMode: 3);
)
Expand Down
2 changes: 1 addition & 1 deletion HelpSource/Classes/Pconst.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ x = a.asStream;
)


//Pconst used as a sequence of pitches
//Pconst used as a sequence of durations

(
SynthDef(\help_sinegrain,
Expand Down
3 changes: 1 addition & 2 deletions HelpSource/Classes/ProxySpace.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ p[\out] = Pbind(\dur, 0.03, \freq, Pbrown(0, 1, 0.1, inf).linexp(0, 1, 200, 350)
p[\out] = { Ringz.ar(p[\in].ar, [350, 351.3] * 8, 0.2) * 4 };
p[\in] = { Impulse.ar([5, 7]/2, [0, 0.5]) };

a.clear(3); // clear after 3 seconds
b.clear(3);
p.clear(3); // clear after 3 seconds
::

ClassMethods::
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Install

macOS and Windows builds for stable releases are provided at our [downloads page][downloads page]. See the [macOS README](README_MACOS.md) and [Windows README](README_WINDOWS.md) for instructions on usage, and how to build SC yourself.

To get the latest stable version, Linux users will need to build SuperCollider themselves. See the [Linux README](LINUX_README.md) for instructions.
To get the latest stable version, Linux users will need to build SuperCollider themselves. See the [Linux README](README_LINUX.md) for instructions.

[downloads page]: https://supercollider.github.io/download

Expand Down

0 comments on commit 4002f5b

Please sign in to comment.