diff options
author | David Robillard <d@drobilla.net> | 2022-07-03 20:46:36 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-17 17:38:23 -0400 |
commit | ed283b838681ed3fb28e94140a6dc5172945776f (patch) | |
tree | 3d3e9bfdbdece17f5ef886be874c1551f8c2119b | |
parent | 57b2852b65989de6573f9e22127bdc682e6d4949 (diff) | |
download | sratom-ed283b838681ed3fb28e94140a6dc5172945776f.tar.gz sratom-ed283b838681ed3fb28e94140a6dc5172945776f.tar.bz2 sratom-ed283b838681ed3fb28e94140a6dc5172945776f.zip |
Use a consistent tagline everywhere
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | doc/c/Doxyfile | 2 | ||||
-rw-r--r-- | doc/conf.py.in | 4 | ||||
-rw-r--r-- | doc/sratom.rst | 5 | ||||
-rw-r--r-- | sratom.pc.in | 2 | ||||
-rw-r--r-- | test/test_sratom.c | 2 |
6 files changed, 11 insertions, 10 deletions
@@ -1,9 +1,9 @@ Sratom ====== -Sratom is a small library for serialising LV2 atoms to and from RDF, for -converting between binary and text or storing in a model. For more -information, see <http://drobilla.net/software/sratom>. +Sratom is a small library for serializing LV2 atoms. Sratom reads/writes atoms +from/to RDF, allowing them to be converted between binary and text or stored in +a model. For more information, see <http://drobilla.net/software/sratom>. More information about LV2 atoms can be found at <http://lv2plug.in/ns/ext/atom> diff --git a/doc/c/Doxyfile b/doc/c/Doxyfile index bca2d52..3252d98 100644 --- a/doc/c/Doxyfile +++ b/doc/c/Doxyfile @@ -1,5 +1,5 @@ PROJECT_NAME = Sratom -PROJECT_BRIEF = "A small library for serialising LV2 atoms to and from RDF" +PROJECT_BRIEF = "A small library for serializing LV2 atoms" QUIET = YES WARN_AS_ERROR = NO diff --git a/doc/conf.py.in b/doc/conf.py.in index c92fe62..0e8b53f 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -49,7 +49,7 @@ if tags.has("singlehtml"): html_theme_options = { "body_max_width": "48em", "body_min_width": "48em", - "description": "A small library for serialising LV2 atoms to and from RDF", + "description": "A small library for serializing LV2 atoms", "globaltoc_collapse": False, "globaltoc_maxdepth": 3, "logo_name": True, @@ -64,7 +64,7 @@ else: html_theme_options = { "body_max_width": "60em", "body_min_width": "40em", - "description": "A small library for serialising LV2 atoms to and from RDF", + "description": "A small library for serializing LV2 atoms", "globaltoc_collapse": True, "globaltoc_maxdepth": 1, "logo_name": True, diff --git a/doc/sratom.rst b/doc/sratom.rst index 9d79a32..bf37c17 100644 --- a/doc/sratom.rst +++ b/doc/sratom.rst @@ -2,7 +2,8 @@ Sratom ###### -Sratom is a small library for serialising `LV2 atoms`_ to and from RDF, -for converting between binary and text or storing in a model. +Sratom is a small library for serializing `LV2 atoms`_. Sratom reads/writes +atoms from/to RDF, allowing them to be converted between binary and text or +stored in a model. .. _LV2 atoms: http://lv2plug.in/ns/ext/atom diff --git a/sratom.pc.in b/sratom.pc.in index 4d95be9..4b53b68 100644 --- a/sratom.pc.in +++ b/sratom.pc.in @@ -5,7 +5,7 @@ includedir=@INCLUDEDIR@ Name: Sratom Version: @SRATOM_VERSION@ -Description: LV2 Atom RDF serialisation library +Description: Small library for serializing LV2 atoms Requires: @SRATOM_PKG_DEPS@ Libs: -L${libdir} -l@LIB_SRATOM@ Cflags: -I${includedir}/sratom-@SRATOM_MAJOR_VERSION@ diff --git a/test/test_sratom.c b/test/test_sratom.c index 95545fc..cc56d8f 100644 --- a/test/test_sratom.c +++ b/test/test_sratom.c @@ -376,7 +376,7 @@ test(SerdEnv* env, bool top_level, bool pretty_numbers) printf("# Turtle => Atom\n\n%s", instr); if (strcmp(outstr, instr)) { - return test_fail("Re-serialised string differs from original\n"); + return test_fail("Re-serialized string differs from original\n"); } free(instr); } |