diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-11 23:58:26 -0700 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-11-23 09:39:54 -0500 |
commit | a50ea582c71081b53311f36c35eeee2dda0fa9cf (patch) | |
tree | 6c401af34dfc925095edca648d2a335b5c110a39 /libsoup/soup-date.c | |
parent | add13ea00e31f9f78d8dd4b26109575a7500dcf6 (diff) | |
download | libsoup-a50ea582c71081b53311f36c35eeee2dda0fa9cf.tar.gz |
Add missing (nullable) annotations, assorted minor introspection fixes
https://bugzilla.gnome.org/show_bug.cgi?id=729987
Diffstat (limited to 'libsoup/soup-date.c')
-rw-r--r-- | libsoup/soup-date.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsoup/soup-date.c b/libsoup/soup-date.c index d3dcf6f4..dabae9d4 100644 --- a/libsoup/soup-date.c +++ b/libsoup/soup-date.c @@ -466,8 +466,8 @@ parse_textual_date (SoupDate *date, const char *date_string) * and reasonable approximations thereof. (Eg, it is lenient about * whitespace, leading "0"s, etc.) * - * Return value: a new #SoupDate, or %NULL if @date_string could not - * be parsed. + * Return value: (nullable): a new #SoupDate, or %NULL if @date_string + * could not be parsed. **/ SoupDate * soup_date_new_from_string (const char *date_string) |