Skip to content

Commit 0fcee36

Browse files
Added a semicolon
Missing semicolon was spotted by LPUoO https://forum.image.sc/t/auto-code-completion-for-ij-macro/11642/147
1 parent 87f70c2 commit 0fcee36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/doc/ij1macro/functions_extd.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
All commands inside an else block are executed if the expression in the earlier if block is false.
1616

1717
<a name="forfilesinafolder"></a>
18-
<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>
18+
<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>
1919
A for loop which opens all files ending with ".tif" in a folder.
2020

2121
<a name="forslicesinastack"></a>

0 commit comments

Comments
 (0)