summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2024-01-22 23:30:07 -0500
committerHubert Figuière <hub@figuiere.net>2024-01-22 23:30:07 -0500
commit48ddf4ef32a0bdffd21755d3498d79e505bf75a8 (patch)
tree792943ae00f0d1f5f635481ad3413f5735701ded
parent205635117ae1fdff2ca6e802aaf05542e974d90f (diff)
utils: Fix doc typo
-rw-r--r--src/utils.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.rs b/src/utils.rs
index 3feccf8..ebc0ee2 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -2,7 +2,7 @@
/*
* libopenraw - utils.rs
*
- * Copyright (C) 2022-2023 Hubert Figuière
+ * Copyright (C) 2022-2024 Hubert Figuière
*
* This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -22,7 +22,7 @@
//! Various utilities
#[macro_export]
-/// Create a vecto with size but not initialized.
+/// Create a vector with size but not initialized.
/// Use with caution.
macro_rules! uninit_vec {
( $len:expr ) => {{