Skip to content

Commit

Permalink
Fix bufferSize comment in XLSXFile (#156)
Browse files Browse the repository at this point in the history
Fix comment that doesn't correspond to the actual default argument.
  • Loading branch information
florianreinhart committed Jul 16, 2021
1 parent 2091a48 commit f683785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/CoreXLSX/XLSXFile.swift
Expand Up @@ -46,7 +46,7 @@ public class XLSXFile {

/// - Parameters:
/// - filepath: path to the `.xlsx` file to be processed.
/// - bufferSize: ZIP archive buffer size in bytes. The default is 10KB.
/// - bufferSize: ZIP archive buffer size in bytes. The default is 10MB.
/// You may need to set a bigger buffer size for bigger files.
/// - errorContextLength: The error context length. The default is `0`.
/// Non-zero length makes an error thrown from
Expand Down Expand Up @@ -76,7 +76,7 @@ public class XLSXFile {
#if swift(>=5.0)
/// - Parameters:
/// - data: content of the `.xlsx` file to be processed.
/// - bufferSize: ZIP archive buffer size in bytes. The default is 10KB.
/// - bufferSize: ZIP archive buffer size in bytes. The default is 10MB.
/// You may need to set a bigger buffer size for bigger files.
/// - errorContextLength: The error context length. The default is `0`.
/// Non-zero length makes an error thrown from
Expand Down

0 comments on commit f683785

Please sign in to comment.