Skip to content

Commit

Permalink
Update ruby and bundler, fix new lint violations
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Dec 8, 2024
1 parent 5546d5e commit 641936c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.3
3.3.6
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ DEPENDENCIES
rubocop-rake (~> 0.6)

BUNDLED WITH
2.5.15
2.5.23
2 changes: 1 addition & 1 deletion src/format/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl<'a> SizeLimiter<'a> {
}
}

impl<'a> Write for SizeLimiter<'a> {
impl Write for SizeLimiter<'_> {
fn write(&mut self, buf: &[u8]) -> Result<usize, Error> {
if self.count + buf.len() > self.size_limit {
return Err(Error::FormattedStringTooLarge);
Expand Down

0 comments on commit 641936c

Please sign in to comment.