Skip to content

Commit 0cff62b

Browse files
committed
wip
1 parent 5fb5fcf commit 0cff62b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/includes/query-builder/QueryBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ public function testMultiplyDivide(): void
614614
// begin multiply with set
615615
$result = DB::table('movies')
616616
->where('year', 1958)
617-
->multiply('runtime', 1.5, ['note' => 'Adds recovered footage & interviews.']);
617+
->multiply('runtime', 1.5, ['note' => 'Adds recovered footage.']);
618618
// end multiply with set
619619

620620
$this->assertIsInt($result);

docs/query-builder.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ division operations on numerical values by using the ``multiply()`` and
12631263
``divide()`` query builder methods.
12641264

12651265
The following example shows how to use the ``multiply()`` and
1266-
``divide()`` query builder methods to manipulate the values of the
1266+
``divide()`` methods to manipulate the values of the
12671267
``imdb.votes`` and ``runtime`` fields:
12681268

12691269
.. literalinclude:: /includes/query-builder/QueryBuilderTest.php

0 commit comments

Comments
 (0)