Skip to content

Commit

Permalink
Merge pull request #5567 from heretogo/PathName-update-helpfile
Browse files Browse the repository at this point in the history
Fixing PathName documentation
  • Loading branch information
dyfer authored Sep 6, 2021
2 parents babcdae + 50eb8e0 commit 9885b7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HelpSource/Classes/PathName.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Here is an example that uses many instance methods. Just pick any file to see al

code::
(
GetFileDialog.new(
FileDialog.new(
{ arg ok, path;
var myPathName;
if (ok,
Expand Down Expand Up @@ -223,7 +223,7 @@ Choose a soundfile to put into the library, using its foldername and filename.

code::
(
GetFileDialog.new(
FileDialog.new(
{ arg ok, path;
var myPathName, myFile;
if (ok,
Expand Down Expand Up @@ -260,7 +260,7 @@ table1 = Wavetable.sineFill(1024, [1,2,3]);
table2 = Signal.newClear.asWavetable;
table3 = Wavetable.sineFill(1024, Array.rand(64, 0.0, 1.0));

GetFileDialog.new(
FileDialog.new(
{ arg ok, path;
var myPathName, myPathOnly;
if (ok,
Expand Down

0 comments on commit 9885b7e

Please sign in to comment.