Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Oct 9, 2024
1 parent f44f4da commit 8ae0842
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
Binary file modified doc/users_guide/evio_Users_Guide.docx
Binary file not shown.
Binary file modified doc/users_guide/evio_Users_Guide.pdf
Binary file not shown.
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,18 @@
<artifactId>AHACompressionAPI</artifactId>
<version>${aha.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>

<!-- build customization -->
Expand Down
6 changes: 3 additions & 3 deletions src/libsrc/evio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2029,7 +2029,7 @@ int evStrInsertBeforeSpecifier(char *str, uint32_t n, const char *insert, char *
* <p>All occurrences of the string "%s" in the baseFileName will be substituted with the
* value of the runType arg or nothing if the runType is null.</p>
*
* <p>The given fileName may contain uyp to 3, C-style int format specifiers which will be substituted
* <p>The given fileName may contain up to 3, C-style int format specifiers which will be substituted
* with runNumber, splitNumber and streamId in the manner described below.</p>
*
* <ul>
Expand Down Expand Up @@ -2058,8 +2058,8 @@ int evStrInsertBeforeSpecifier(char *str, uint32_t n, const char *insert, char *
* </ul>
* <li>If 3 specifiers:</li>
* <ul>
* <li>add runNumber according to first specifier</li>
* <li>add streamId according to second specifier add splitNumber according to third specifier</li>
* <li>add runNumber according to first specifier, streamId according to second specifier,
* and splitNumber according to third specifier</li>
* </ul>
* </ul>
*
Expand Down

0 comments on commit 8ae0842

Please sign in to comment.