Skip to content

Commit

Permalink
Added a semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
haesleinhuepf committed Sep 27, 2020
1 parent 87f70c2 commit 0fcee36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/doc/ij1macro/functions_extd.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
All commands inside an else block are executed if the expression in the earlier if block is false.

<a name="forfilesinafolder"></a>
<b>filelist = getFileList(directory) <br>for (i = 0; i < lengthOf(filelist); i++) {<br> if (endsWith(filelist[i], ".tif")) { <br> open(directory + File.separator + filelist[i]);<br> } <br>}</b>
<b>filelist = getFileList(directory); <br>for (i = 0; i < lengthOf(filelist); i++) {<br> if (endsWith(filelist[i], ".tif")) { <br> open(directory + File.separator + filelist[i]);<br> } <br>}</b>
A for loop which opens all files ending with ".tif" in a folder.

<a name="forslicesinastack"></a>
Expand Down

1 comment on commit 0fcee36

@imagesc-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit has been mentioned on Image.sc Forum. There might be relevant details there:

https://forum.image.sc/t/auto-code-completion-for-ij-macro/11642/148

Please sign in to comment.