summaryrefslogtreecommitdiffstats
path: root/m_config.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-27 13:22:23 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-27 13:22:23 +0000
commita2fdc1955ce2711cd04e6583fc21bc039bdc6d08 (patch)
tree4e8a105346758cc2b5472d9f39d2ab5fae6e16ee /m_config.h
parent9e6de98c11511c950080a63cd9c305ade6f684f9 (diff)
downloadmpv-a2fdc1955ce2711cd04e6583fc21bc039bdc6d08.tar.bz2
mpv-a2fdc1955ce2711cd04e6583fc21bc039bdc6d08.tar.xz
spelling/grammar/wording fixes in doxygen and non-doxygen comments
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18317 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_config.h')
-rw-r--r--m_config.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/m_config.h b/m_config.h
index 7173430b28..88a6e76e9f 100644
--- a/m_config.h
+++ b/m_config.h
@@ -4,8 +4,8 @@
/// \defgroup Config Config manager
///
/// m_config provides an API to manipulate the config variables in MPlayer.
-/// It make uses of the \ref Options API to provide a context stack that
-/// allow saving and later restoring the state of all variables.
+/// It makes use of the \ref Options API to provide a context stack that
+/// allows saving and later restoring the state of all variables.
///@{
/// \file
@@ -23,8 +23,8 @@ struct m_config_save_slot {
m_config_save_slot_t* prev;
/// Level at which the save was made.
int lvl;
- // we have to store other datatypes in this as well,
- // so make sure we get properly aligned addresses
+ // We have to store other datatypes in this as well,
+ // so make sure we get properly aligned addresses.
unsigned char data[0] __attribute__ ((aligned (8)));
};
@@ -84,7 +84,7 @@ typedef struct m_config {
/// \ingroup Config
///@{
-/// Set if an option have been set at the current level.
+/// Set if an option has been set at the current level.
#define M_CFG_OPT_SET (1<<0)
/// Set if another option already uses the same variable.
@@ -173,7 +173,7 @@ m_profile_t*
m_config_add_profile(m_config_t* config, char* name);
/// Set the description of a profile.
-/** This is used by the config file parser when defining a profile.
+/** Used by the config file parser when defining a profile.
*
* \param p The profile object.
* \param arg The profile's name.
@@ -182,7 +182,7 @@ void
m_profile_set_desc(m_profile_t* p, char* desc);
/// Add an option to a profile.
-/** This is used by the config file parser when defining a profile.
+/** Used by the config file parser when defining a profile.
*
* \param config The config object.
* \param p The profile object.