Skip to content

Commit ba7b35a

Browse files
Corrected copy and pasted comment
1 parent 2f6fcc2 commit ba7b35a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jbmc/src/java_bytecode/jar_file.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class jar_filet final
3131
/// Open a JAR file of size \p size loaded in memory at address \p data.
3232
/// \param data: memory buffer with the contents of the jar file
3333
/// \param size: size of the memory buffer
34-
/// \throw Throws std::runtime_error if file cannot be opened
34+
/// \throw Throws std::runtime_error if data is not in correct format
3535
jar_filet(const void *data, size_t size);
3636

3737
jar_filet(const jar_filet &)=delete;

jbmc/src/java_bytecode/mz_zip_archive.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class mz_zip_archivet final
2828
/// Loads a zip buffer
2929
/// \param data: pointer to the memory buffer
3030
/// \param size: size of the buffer
31-
/// \throw Throws std::runtime_error if file cannot be opened
31+
/// \throw Throws std::runtime_error if data is not in correct format
3232
mz_zip_archivet(const void *data, size_t size);
3333

3434
mz_zip_archivet(const mz_zip_archivet &)=delete;

0 commit comments

Comments
 (0)