Remove a few leftover <simplelist>s

This commit is contained in:
Matthias Clasen 2014-02-08 13:25:04 -05:00
parent 3ad5aadb40
commit c43e0c34b0

View File

@ -76,13 +76,11 @@
* (see #GInputStream and #GOutputStream). * (see #GInputStream and #GOutputStream).
* *
* To construct a #GFile, you can use: * To construct a #GFile, you can use:
* <simplelist> * - g_file_new_for_path() if you have a path.
* <member>g_file_new_for_path() if you have a path.</member> * - g_file_new_for_uri() if you have a URI.
* <member>g_file_new_for_uri() if you have a URI.</member> * - g_file_new_for_commandline_arg() for a command line argument.
* <member>g_file_new_for_commandline_arg() for a command line argument.</member> * - g_file_new_tmp() to create a temporary file from a template.
* <member>g_file_new_tmp() to create a temporary file from a template.</member> * - g_file_parse_name() from a UTF-8 string gotten from g_file_get_parse_name().
* <member>g_file_parse_name() from a UTF-8 string gotten from g_file_get_parse_name().</member>
* </simplelist>
* *
* One way to think of a #GFile is as an abstraction of a pathname. For * One way to think of a #GFile is as an abstraction of a pathname. For
* normal files the system pathname is what is stored internally, but as * normal files the system pathname is what is stored internally, but as
@ -131,11 +129,9 @@
* Some #GFile operations do not have synchronous analogs, as they may * Some #GFile operations do not have synchronous analogs, as they may
* take a very long time to finish, and blocking may leave an application * take a very long time to finish, and blocking may leave an application
* unusable. Notable cases include: * unusable. Notable cases include:
* <simplelist> * - g_file_mount_mountable() to mount a mountable file.
* <member>g_file_mount_mountable() to mount a mountable file.</member> * - g_file_unmount_mountable_with_operation() to unmount a mountable file.
* <member>g_file_unmount_mountable_with_operation() to unmount a mountable file.</member> * - g_file_eject_mountable_with_operation() to eject a mountable file.
* <member>g_file_eject_mountable_with_operation() to eject a mountable file.</member>
* </simplelist>
* *
* ## Entity Tags # {#gfile-etag} * ## Entity Tags # {#gfile-etag}
* *