Skip to content

Commit

Permalink
Merge pull request vimeo#10393 from cgocast/doc
Browse files Browse the repository at this point in the history
Doc typo
  • Loading branch information
orklah authored Nov 22, 2023
2 parents 5095f4e + 7be610e commit baa6d5d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedEval.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedEval

Emitted when user-controlled input can be passed into to an `eval` call.
Emitted when user-controlled input can be passed into an `eval` call.

Passing untrusted user input to `eval` calls is dangerous, as it allows arbitrary data to be executed on your server.

Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedHtml.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedHtml

Emitted when user-controlled input that can contain HTML can be passed into to an `echo` statement.
Emitted when user-controlled input that can contain HTML can be passed into an `echo` statement.

## Risk

Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedInclude.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedInclude

Emitted when user-controlled input can be passed into to an `include` or `require` expression.
Emitted when user-controlled input can be passed into an `include` or `require` expression.

Passing untrusted user input to `include` calls is dangerous, as it can allow an attacker to execute arbitrary scripts on your server.

Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedShell.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedShell

Emitted when user-controlled input can be passed into to an `exec` call or similar.
Emitted when user-controlled input can be passed into an `exec` call or similar.

```php
<?php
Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedSql.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedSql

Emitted when user-controlled input can be passed into to a SQL command.
Emitted when user-controlled input can be passed into a SQL command.

```php
<?php
Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedTextWithQuotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedTextWithQuotes

Emitted when user-controlled input that can contain quotation marks can be passed into to an `echo` statement.
Emitted when user-controlled input that can contain quotation marks can be passed into an `echo` statement.

## Risk

Expand Down
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/TaintedXpath.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TaintedXpath

Emitted when user-controlled input can be passed into to a xpath query.
Emitted when user-controlled input can be passed into a xpath query.

```php
<?php
Expand Down

0 comments on commit baa6d5d

Please sign in to comment.