OpenStack typo

According to the word choice convention in
http://docs.openstack.org/contributor-guide/writing-style/word-choice.html
We should use OpenStack instead of Openstack.

Closes-bug: #1516634

Change-Id: If4fd264635549c5b21c80e91b606142c5f9ae3a4
This commit is contained in:
Shuquan Huang 2015-11-15 11:45:30 +08:00
parent f293c769e2
commit c6f7d39e48
3 changed files with 3 additions and 3 deletions

View File

@ -613,7 +613,7 @@ class RequestDeserializer(wsgi.JSONRequestDeserializer):
"""
Process sorting params.
Currently glance supports two sorting syntax: classic and new one,
that is uniform for all Openstack projects.
that is uniform for all OpenStack projects.
Classic syntax: sort_key=name&sort_dir=asc&sort_key=size&sort_dir=desc
New syntax: sort=name:asc,size:desc
"""

View File

@ -79,7 +79,7 @@ class GlanceBase(models.ModelBase, models.TimestampMixin):
created_at = Column(DateTime, default=lambda: timeutils.utcnow(),
nullable=False)
# TODO(vsergeyev): Column `updated_at` have no default value in
# openstack common code. We should decide, is this value
# OpenStack common code. We should decide, is this value
# required and make changes in oslo (if required) or
# in glance (if not).
updated_at = Column(DateTime, default=lambda: timeutils.utcnow(),

View File

@ -56,7 +56,7 @@ class GlanceMetadefBase(models.TimestampMixin):
created_at = Column(DateTime, default=lambda: timeutils.utcnow(),
nullable=False)
# TODO(wko): Column `updated_at` have no default value in
# openstack common code. We should decide, is this value
# OpenStack common code. We should decide, is this value
# required and make changes in oslo (if required) or
# in glance (if not).
updated_at = Column(DateTime, default=lambda: timeutils.utcnow(),