summaryrefslogtreecommitdiffstats
path: root/libmscgen/mscgen_api.c
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-05 14:58:43 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-05 14:58:43 (GMT)
commit83b138afee3405c1b08b671efccba5b3ec1ec45c (patch)
treed6fe6eacf41a7a4e4c7ae9faf45adad1da214a1c /libmscgen/mscgen_api.c
parentcc4675afcc5f6825b9302fd0915c0c4148f555ab (diff)
downloadDoxygen-83b138afee3405c1b08b671efccba5b3ec1ec45c.zip
Doxygen-83b138afee3405c1b08b671efccba5b3ec1ec45c.tar.gz
Doxygen-83b138afee3405c1b08b671efccba5b3ec1ec45c.tar.bz2
Spelling corrections for libmscgen directory
Spelling corrections as found by codespell. The original package was written by UK-English writing person so left the words in UK-English (upon request this can be changed as well to US-English spelling).
Diffstat (limited to 'libmscgen/mscgen_api.c')
-rw-r--r--libmscgen/mscgen_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmscgen/mscgen_api.c b/libmscgen/mscgen_api.c
index 31f5556..c5a9eb3 100644
--- a/libmscgen/mscgen_api.c
+++ b/libmscgen/mscgen_api.c
@@ -662,7 +662,7 @@ static char *getLine(const char *string,
* \param x The x position at which the entity text should be centered.
* \param y The y position where the text should be placed.
* \param entLabel The label to render, which maybe \a NULL in which case
- * no ouput is produced.
+ * no output is produced.
* \param entUrl The URL for rendering the label as a hyperlink. This
* maybe \a NULL if not required.
* \param entId The text identifier for the arc.
@@ -704,7 +704,7 @@ static void entityText(Context *ctx,
/* Check if a URL is associated */
if(entUrl)
{
- /* If no explict colour has been set, make URLS blue */
+ /* If no explicit colour has been set, make URLS blue */
ctx->drw.setPen(&ctx->drw, ADRAW_COL_BLUE);
/* Image map output */
@@ -1431,7 +1431,7 @@ static void arcLine(Context *ctx,
*/
static Boolean checkMsc(Msc m)
{
- /* Check all arc entites are known */
+ /* Check all arc entities are known */
MscResetArcIterator(m);
do
{
@@ -1710,7 +1710,7 @@ int mscgen_generate(const char *inputFile,
assert(startCol != -1);
assert(endCol != -1 || isBroadcastArc(MscGetCurrentArcDest(m)));
- /* Check for entity colouring if not set explicity on the arc */
+ /* Check for entity colouring if not set explicitly on the arc */
if (arcTextColour == NULL)
{
arcTextColour = MscGetEntAttrib(m, startCol, MSC_ATTR_ARC_TEXT_COLOUR);