diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-11-15 00:48:53 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-11-15 00:48:53 -0500 |
commit | 1256cab54b5248b9885196f474fbb50304a0e45a (patch) | |
tree | 2af2a8f4e552b04f38ee6240f7494eae1d87c61f /libdimension/dimension/error.h | |
parent | 8fe33a340b8979a73fa84f201c15519a9b5d0266 (diff) | |
download | dimension-1256cab54b5248b9885196f474fbb50304a0e45a.tar.xz |
End sentences with periods.
Diffstat (limited to 'libdimension/dimension/error.h')
-rw-r--r-- | libdimension/dimension/error.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libdimension/dimension/error.h b/libdimension/dimension/error.h index 8482266..fd78115 100644 --- a/libdimension/dimension/error.h +++ b/libdimension/dimension/error.h @@ -29,11 +29,11 @@ #ifndef DIMENSION_ERROR_H #define DIMENSION_ERROR_H -/** Error severity codes */ +/** Error severity codes. */ typedef enum dmnsn_severity { - DMNSN_SEVERITY_LOW, /**< Only die on low resilience */ - DMNSN_SEVERITY_MEDIUM, /**< Die on low or medium resilience */ - DMNSN_SEVERITY_HIGH /**< Always die */ + DMNSN_SEVERITY_LOW, /**< Only die on low resilience. */ + DMNSN_SEVERITY_MEDIUM, /**< Die on low or medium resilience. */ + DMNSN_SEVERITY_HIGH /**< Always die. */ } dmnsn_severity; /** |