diff options
Diffstat (limited to 'doc/c')
-rw-r--r-- | doc/c/overview.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/c/overview.rst b/doc/c/overview.rst index c6347d6..2fb1a31 100644 --- a/doc/c/overview.rst +++ b/doc/c/overview.rst @@ -51,13 +51,13 @@ For example: .. code-block:: c - SerdStringView base = SERD_STRING("file:///tmp/state/"); + SerdStringView base = serd_string("file:///tmp/state/"); SerdEnv* env = serd_env_new(base); serd_env_set_prefix( env, - SERD_STRING("atom"), - SERD_STRING("http://lv2plug.in/ns/ext/atom#")); + serd_string("atom"), + serd_string("http://lv2plug.in/ns/ext/atom#")); With the environment configured, :func:`sratom_to_string` can be used to convert atoms to strings: |