diff --git a/object/src/file.rs b/object/src/file.rs
index 9748d653..7c0ed4af 100644
--- a/object/src/file.rs
+++ b/object/src/file.rs
@@ -103,7 +103,7 @@ impl<D, T> OpenFileOptions<D, T> {
     }
 
     /// Set the transfer syntax index to use when reading the file.
-    pub fn tranfer_syntax_index<Tr>(self, ts_index: Tr) -> OpenFileOptions<D, Tr>
+    pub fn transfer_syntax_index<Tr>(self, ts_index: Tr) -> OpenFileOptions<D, Tr>
     where
         Tr: TransferSyntaxIndex,
     {
@@ -116,6 +116,15 @@ impl<D, T> OpenFileOptions<D, T> {
         }
     }
 
+    /// Set the transfer syntax index to use when reading the file.
+    #[deprecated(since="0.8.1", note="please use `transfer_syntax_index` instead")]
+    pub fn tranfer_syntax_index<Tr>(self, ts_index: Tr) -> OpenFileOptions<D, Tr>
+    where
+        Tr: TransferSyntaxIndex,
+    {
+        self.transfer_syntax_index(ts_index)
+    }
+
     /// Set the data element dictionary to use when reading the file.
     pub fn dictionary<Di>(self, dict: Di) -> OpenFileOptions<Di, T>
     where
diff --git a/object/src/lib.rs b/object/src/lib.rs
index abbd8422..e84bb632 100644
--- a/object/src/lib.rs
+++ b/object/src/lib.rs
@@ -351,7 +351,7 @@ impl AccessError {
 #[non_exhaustive]
 #[snafu(visibility(pub(crate)))]
 pub enum AtAccessError {
-    /// Missing itermediate sequence for {selector} at step {step_index}
+    /// Missing intermediate sequence for {selector} at step {step_index}
     MissingSequence {
         selector: AttributeSelector,
         step_index: u32,
diff --git a/object/src/ops.rs b/object/src/ops.rs
index 9a514a8d..343911a8 100644
--- a/object/src/ops.rs
+++ b/object/src/ops.rs
@@ -15,7 +15,7 @@ use crate::FileDicomObject;
 #[non_exhaustive]
 #[snafu(visibility(pub(crate)))]
 pub enum ApplyError {
-    /// Missing itermediate sequence for {selector} at step {step_index}
+    /// Missing intermediate sequence for {selector} at step {step_index}
     MissingSequence {
         selector: AttributeSelector,
         step_index: u32,
diff --git a/storescp/src/store_async.rs b/storescp/src/store_async.rs
index 02d6545c..4e40c08d 100644
--- a/storescp/src/store_async.rs
+++ b/storescp/src/store_async.rs
@@ -83,7 +83,7 @@ pub async fn run_store_async(
                             } else if data_value.value_type == PDataValueType::Command
                                 && data_value.is_last
                             {
-                                // commands are always in implict VR LE
+                                // commands are always in implicit VR LE
                                 let ts =
                                     dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN
                                         .erased();
@@ -193,7 +193,7 @@ pub async fn run_store_async(
                                 info!("Stored {}", file_path.display());
 
                                 // send C-STORE-RSP object
-                                // commands are always in implict VR LE
+                                // commands are always in implicit VR LE
                                 let ts =
                                     dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN
                                         .erased();
diff --git a/storescp/src/store_sync.rs b/storescp/src/store_sync.rs
index d8fc8ec4..4162f064 100644
--- a/storescp/src/store_sync.rs
+++ b/storescp/src/store_sync.rs
@@ -81,7 +81,7 @@ pub fn run_store_sync(scu_stream: TcpStream, args: &App) -> Result<(), Whatever>
                             } else if data_value.value_type == PDataValueType::Command
                                 && data_value.is_last
                             {
-                                // commands are always in implict VR LE
+                                // commands are always in implicit VR LE
                                 let ts =
                                     dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN
                                         .erased();
@@ -191,7 +191,7 @@ pub fn run_store_sync(scu_stream: TcpStream, args: &App) -> Result<(), Whatever>
                                 info!("Stored {}", file_path.display());
 
                                 // send C-STORE-RSP object
-                                // commands are always in implict VR LE
+                                // commands are always in implicit VR LE
                                 let ts =
                                     dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN
                                         .erased();