Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ekatrukha committed May 6, 2024
1 parent e36c40a commit 5681dde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/unequaltiffs/UTImageSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ else if ( filenames.isEmpty() )
return true;
}

/**given the path to folder and file extension, returns List<String> of filenames **/
/**given the path to folder and file extension, returns List of Strings containing filenames **/
public static List< String > getFilenamesFromFolder( final String sFolderPath, final String fileExtension )
{
final Path path = Paths.get( sFolderPath );
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/unequaltiffs/UnequalTiffs.java
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public IntervalView< T > prepareMontageForImageJView( final Img< T > img_montage
return out;
}

/** function orders input Img<T> to ImageJ order of XYCZT **/
/** function orders axes of the input Img to ImageJ order of XYCZT **/
public IntervalView< T > prepareConcatForImageJView( final Img< T > img_concat, String sConcatDim )
{
IntervalView< T > out = Views.interval( img_concat, img_concat );
Expand Down

0 comments on commit 5681dde

Please sign in to comment.