aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-20 07:23:10 -0500
committerDavid Robillard <d@drobilla.net>2022-12-20 07:32:13 -0500
commit58045c2ef18cc7912cb712a7c806d5f28fde187a (patch)
tree31860131ff102af5438fb199b52151d712566f1e /include
parent9757f30ad4d9bc1ceb7bb731b19872921f168e59 (diff)
downloadserd-58045c2ef18cc7912cb712a7c806d5f28fde187a.tar.gz
serd-58045c2ef18cc7912cb712a7c806d5f28fde187a.tar.bz2
serd-58045c2ef18cc7912cb712a7c806d5f28fde187a.zip
Avoid using ASCII grave as a quote
Diffstat (limited to 'include')
-rw-r--r--include/serd/serd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h
index c1d1a8b1..cc42c842 100644
--- a/include/serd/serd.h
+++ b/include/serd/serd.h
@@ -478,8 +478,8 @@ serd_node_new_relative_uri(const SerdURI* SERD_NONNULL uri,
/**
Create a new node by serialising `d` into an xsd:decimal string.
- The resulting node will always contain a `.', start with a digit, and end
- with a digit (i.e. will have a leading and/or trailing `0' if necessary).
+ The resulting node will always contain a '.', start with a digit, and end
+ with a digit (i.e. will have a leading and/or trailing '0' if necessary).
It will never be in scientific notation. A maximum of `frac_digits` digits
will be written after the decimal point, but trailing zeros will
automatically be omitted (except one if `d` is a round integer).