diff options
author | Murray Cumming <murrayc@murrayc.com> | 2012-12-12 11:25:57 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2012-12-12 11:26:20 +0100 |
commit | 530e55ed66181e6ac28fb4bb19840226475b183e (patch) | |
tree | 13c65bebe895a90872b5e22687a3e28d2c5e21b2 | |
parent | de4b92fb10c87fcfe998021d3b24abe073c33c85 (diff) | |
download | rygel-530e55ed66181e6ac28fb4bb19840226475b183e.tar.gz |
Tiny grammar fixes
4 files changed, 4 insertions, 4 deletions
diff --git a/src/librygel-server/rygel-item-creator.vala b/src/librygel-server/rygel-item-creator.vala index 5b6750d1..69e4d5b4 100644 --- a/src/librygel-server/rygel-item-creator.vala +++ b/src/librygel-server/rygel-item-creator.vala @@ -263,7 +263,7 @@ internal class Rygel.ItemCreator: GLib.Object, Rygel.StateMachine { * search for a container if the caller supplied the "DLNA.ORG_AnyContainer" * id. * - * @return a instance of WritableContainer matching the criteria + * @return an instance of WritableContainer matching the criteria * @throws ContentDirectoryError for various problems */ private async WritableContainer fetch_container () throws Error { diff --git a/src/librygel-server/rygel-media-container.vala b/src/librygel-server/rygel-media-container.vala index da51f8f6..23b997a2 100644 --- a/src/librygel-server/rygel-media-container.vala +++ b/src/librygel-server/rygel-media-container.vala @@ -88,7 +88,7 @@ public abstract class Rygel.MediaContainer : MediaObject { public uint32 update_id; public int64 storage_used; - // This is a uint32 in UPnP. SystemUpdateID should reach uint32.MAX way + // This is an uint32 in UPnP. SystemUpdateID should reach uint32.MAX way // before this variable and cause a SystemResetProcedure. public int64 total_deleted_child_count; diff --git a/src/librygel-server/rygel-media-object.vala b/src/librygel-server/rygel-media-object.vala index 59d1a7f5..dc4f0b96 100644 --- a/src/librygel-server/rygel-media-object.vala +++ b/src/librygel-server/rygel-media-object.vala @@ -49,7 +49,7 @@ public abstract class Rygel.MediaObject : GLib.Object { // and make the uri property single-value. public Gee.ArrayList<string> uris; - // You can keep both a unowned and owned ref to parent of this MediaObject. + // You can keep both an unowned and owned ref to parent of this MediaObject. // In most cases, one will only need to keep an unowned ref to avoid cyclic // references since usually the parent container will keep refs to child items. // However, in some cases, one only wants the parent to exist as long as the diff --git a/src/plugins/media-export/rygel-media-export-database-cursor.vala b/src/plugins/media-export/rygel-media-export-database-cursor.vala index 6c3f0dc6..d305532c 100644 --- a/src/plugins/media-export/rygel-media-export-database-cursor.vala +++ b/src/plugins/media-export/rygel-media-export-database-cursor.vala @@ -117,7 +117,7 @@ internal class Rygel.MediaExport.DatabaseCursor : SqliteWrapper { // convenience functions for "foreach" /** - * Return a iterator to the cursor to use with foreach + * Return an iterator to the cursor to use with foreach * * @return an iterator wrapping the cursor */ |