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

[ci skip] Guide: Minor grammar corrections #2337

Merged
merged 1 commit into from
Oct 16, 2019
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion user_guide_src/source/dbmgmt/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ This example will migrate Blog namespace with any new migrations on the test dat
> php spark migrate -g test -n Blog

When using the `-all` option, it will scan through all namespaces attempting to find any migrations that have
not been ran. These will all be collected and then sorted as a group by date created. This should help
not been run. These will all be collected and then sorted as a group by date created. This should help
to minimize any potential conflicts between the main application and any modules.

**rollback**
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/outgoing/table.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Class Reference
$table->function = 'htmlspecialchars';
echo $table->generate();

In the above example, all cell data would be ran through PHP's :php:func:`htmlspecialchars()` function, resulting in::
In the above example, all cell data would be run through PHP's :php:func:`htmlspecialchars()` function, resulting in::

<td>Fred</td><td>&lt;strong&gt;Blue&lt;/strong&gt;</td><td>Small</td>

Expand Down