summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-09-11 16:05:34 -0400
committer AJR <ajrhacker@users.noreply.github.com>2021-09-11 16:05:34 -0400
commitfae732dc5d3b5ea2f03de3ad7b1f0740c43d7c4e (patch)
tree646e1c76064f1e88c1931b32ff7c1aee5e57c91c
parent6403b5cff81e20a9a0bb867a9aa4c769eb12618f (diff)
gamedrv.h, ioprocs.h: Fix typos in comments
-rw-r--r--src/emu/gamedrv.h6
-rw-r--r--src/lib/util/ioprocs.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/gamedrv.h b/src/emu/gamedrv.h
index eba153e3410..38f46a40bd2 100644
--- a/src/emu/gamedrv.h
+++ b/src/emu/gamedrv.h
@@ -116,7 +116,7 @@ constexpr u64 MACHINE_IS_SKELETON_MECHANICAL = MACHINE_IS_SKELETON | MACHINE_
/// \brief Static system description
///
-/// A plain data structure providing static information about an system.
+/// A plain data structure providing static information about a system.
/// Used to allow multiple systems to be implemented using a single
/// system device class (an implementation of #driver_device).
class game_driver
@@ -128,7 +128,7 @@ public:
/// \brief Get unemulated system features
///
/// Converts system flags corresponding to unemulated device
- /// features to the a device feature type bit field.
+ /// features to a device feature type bit field.
/// \param [in] flags A system flags bit field.
/// \return A device feature type bit field corresponding to
/// unemulated features declared in the \p flags argument.
@@ -145,7 +145,7 @@ public:
/// \brief Get imperfectly emulated system features
///
/// Converts system flags corresponding to imperfectly emulated
- /// device features to the a device feature type bit field.
+ /// device features to a device feature type bit field.
/// \param [in] flags A system flags bit field.
/// \return A device feature type bit field corresponding to
/// imperfectly emulated features declared in the \p flags
diff --git a/src/lib/util/ioprocs.h b/src/lib/util/ioprocs.h
index 0a4e5c384f0..f2826273c5d 100644
--- a/src/lib/util/ioprocs.h
+++ b/src/lib/util/ioprocs.h
@@ -151,7 +151,7 @@ public:
/// \brief Get the length of the stream
///
/// Gets the current length of the stream.
- /// \param [out] result The lenght of the stream in bytes. Not
+ /// \param [out] result The length of the stream in bytes. Not
/// valid if the operation fails.
/// \return An error condtion if the operation failed.
virtual std::error_condition length(std::uint64_t &result) noexcept = 0;
@@ -160,7 +160,7 @@ public:
/// \brief Interface to a random-access byte input sequence
///
-/// Provides an interface for reading from aritrary positions within a
+/// Provides an interface for reading from arbitrary positions within a
/// byte sequence. No further structure is provided.
/// \sa read_stream random_write random_read_write
class random_read : public virtual read_stream, public virtual random_access