Skip to content

Commit

Permalink
Small fixes in example files
Browse files Browse the repository at this point in the history
  • Loading branch information
jaytaph committed Feb 6, 2012
1 parent ad6bcdb commit 3e717a2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/1.1-check-solarium-and-ping.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// execute the ping query
try{
$result = $client->ping($ping);
echo 'Ping query succesful';
echo 'Ping query successful';
echo '<br/><pre>';
var_dump($result->getData());
}catch(Solarium_Exception $e){
Expand Down
2 changes: 1 addition & 1 deletion examples/1.3-basic-update.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/2.2.1-add-docs.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/2.2.2-delete-by-query.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/2.2.3-delete-by-id.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/2.2.4-optimize.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/2.2.5-rollback.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// this executes the query and returns the result
$result = $client->update($update);

echo '<b>Update query executed<b><br/>';
echo '<b>Update query executed</b><br/>';
echo 'Query status: ' . $result->getStatus(). '<br/>';
echo 'Query time: ' . $result->getQueryTime();

Expand Down

0 comments on commit 3e717a2

Please sign in to comment.