diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-02-19 23:03:32 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-02-28 19:36:14 -0500 |
commit | 2c07646764384545e5303222729d5ff93dec4347 (patch) | |
tree | 105ef5ce7a4ada2c6de6739f1fc2a30c1731a443 /src/python-systemd/id128.c | |
parent | 33ed3769b5ef0e50966061bbc023a05e206396b9 (diff) |
systemd-python: polish the docstrings
Diffstat (limited to 'src/python-systemd/id128.c')
-rw-r--r-- | src/python-systemd/id128.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/python-systemd/id128.c b/src/python-systemd/id128.c index f82b0afb99..04db786b66 100644 --- a/src/python-systemd/id128.c +++ b/src/python-systemd/id128.c @@ -35,24 +35,24 @@ static void cleanup_Py_DECREFp(PyObject **p) { PyDoc_STRVAR(module__doc__, "Python interface to the libsystemd-id128 library.\n\n" "Provides SD_MESSAGE_* constants and functions to query and generate\n" - "128bit unique identifiers." + "128-bit unique identifiers." ); PyDoc_STRVAR(randomize__doc__, "randomize() -> UUID\n\n" - "Return a new random 128bit unique identifier.\n" + "Return a new random 128-bit unique identifier.\n" "Wraps sd_id128_randomize(3)." ); PyDoc_STRVAR(get_machine__doc__, "get_machine() -> UUID\n\n" - "Return a 128bit unique identifier for this machine.\n" + "Return a 128-bit unique identifier for this machine.\n" "Wraps sd_id128_get_machine(3)." ); PyDoc_STRVAR(get_boot__doc__, "get_boot() -> UUID\n\n" - "Return a 128bit unique identifier for this boot.\n" + "Return a 128-bit unique identifier for this boot.\n" "Wraps sd_id128_get_boot(3)." ); |