gamedrv.h, ioprocs.h: Fix typos in comments

This commit is contained in:
AJR 2021-09-11 16:05:34 -04:00
parent 6403b5cff8
commit fae732dc5d
2 changed files with 5 additions and 5 deletions

View File

@ -116,7 +116,7 @@ constexpr u64 MACHINE_IS_SKELETON_MECHANICAL = MACHINE_IS_SKELETON | MACHINE_
/// \brief Static system description /// \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 /// Used to allow multiple systems to be implemented using a single
/// system device class (an implementation of #driver_device). /// system device class (an implementation of #driver_device).
class game_driver class game_driver
@ -128,7 +128,7 @@ public:
/// \brief Get unemulated system features /// \brief Get unemulated system features
/// ///
/// Converts system flags corresponding to unemulated device /// 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. /// \param [in] flags A system flags bit field.
/// \return A device feature type bit field corresponding to /// \return A device feature type bit field corresponding to
/// unemulated features declared in the \p flags argument. /// unemulated features declared in the \p flags argument.
@ -145,7 +145,7 @@ public:
/// \brief Get imperfectly emulated system features /// \brief Get imperfectly emulated system features
/// ///
/// Converts system flags corresponding to imperfectly emulated /// 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. /// \param [in] flags A system flags bit field.
/// \return A device feature type bit field corresponding to /// \return A device feature type bit field corresponding to
/// imperfectly emulated features declared in the \p flags /// imperfectly emulated features declared in the \p flags

View File

@ -151,7 +151,7 @@ public:
/// \brief Get the length of the stream /// \brief Get the length of the stream
/// ///
/// Gets the current 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. /// valid if the operation fails.
/// \return An error condtion if the operation failed. /// \return An error condtion if the operation failed.
virtual std::error_condition length(std::uint64_t &result) noexcept = 0; 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 /// \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. /// byte sequence. No further structure is provided.
/// \sa read_stream random_write random_read_write /// \sa read_stream random_write random_read_write
class random_read : public virtual read_stream, public virtual random_access class random_read : public virtual read_stream, public virtual random_access