Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Minor Typos in Docs #299

Merged
merged 1 commit into from Mar 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/database.rst
Expand Up @@ -101,7 +101,7 @@ this (again, assume some of the variables in this example have been set
beforehand):

.. code-block:: php
:caption: Store a string UUID to the uuid column
:caption: Store UUID bytes to the uuid column
:name: database.uuid-bytes-store-example

$sth->execute([
Expand Down Expand Up @@ -186,7 +186,7 @@ with this approach, but there are a couple of points to consider:
We'll deal with the first point in the section, :ref:`database.order`. For the
second point, if you are using the string version of the UUID (i.e.,
``char(36)``), then not only will the primary key be large and take up a lot of
space, but every secondary key that uses that primary key will also be must
space, but every secondary key that uses that primary key will also be much
larger.

For this reason, if you choose to use UUIDs as primary keys, it might be worth
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrading/3-to-4.rst
Expand Up @@ -33,7 +33,7 @@ There are a lot of new features in ramsey/uuid! Here are a few of them:
* :php:class:`Rfc4122\\UuidV3 <Ramsey\\Uuid\\Rfc4122\\UuidV3>`
* :php:class:`Rfc4122\\UuidV4 <Ramsey\\Uuid\\Rfc4122\\UuidV4>`
* :php:class:`Rfc4122\\UuidV5 <Ramsey\\Uuid\\Rfc4122\\UuidV5>`
* Rfc4122\\NilUuid
* :php:class:`Rfc4122\\NilUuid <Ramsey\\Uuid\\Rfc4122\\NilUuid>`

* Add classes to represent version 6 UUIDs, GUIDs, and nonstandard
(non-RFC 4122 variants) UUIDs:
Expand Down