Skip to content

Commit 9d0fb79

Browse files
author
Ryan Bridge
committed
Fixing line order
Found a few sections where the text ended up out of order after adding my changes. Signed-off-by: Ryan Bridge <rbridge@gmail.com>
1 parent 2197685 commit 9d0fb79

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
An easy to use wrapper for the [Dark Sky](https://darksky.net/) API (formerly [Forecast.io](https://forecast.io)).
1111

12-
you may specify the specific time, past or present.
1312
Overcast will query the Dark Sky API for weather information for the longitude and latitude you specify. Additionally
13+
you may specify the specific time, past or present.
1414

1515
See the [Dark Sky API documentation](https://darksky.net/dev/docs) for more information.
1616

src/ClientAdapters/GuzzleClientAdapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
* Class GuzzleClientAdapter
1616
*
1717
* The Guzzle client adapter uses Guzzle to connect to
18+
* the Dark Sky API
1819
*
1920
* @package VertigoLabs\Overcast\ClientAdapters
20-
* the Dark Sky API
2121
*/
2222
class GuzzleClientAdapter implements ClientAdapterInterface
2323
{
@@ -40,8 +40,8 @@ public function __construct(Client $guzzleClient = null)
4040
}
4141

4242
/**
43-
* form of an array
4443
* Returns the response data from the Dark Sky in the
44+
* form of an array.
4545
*
4646
* @param float $latitude
4747
* @param float $longitude

src/Forecast.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
* Class Forecast
1616
*
1717
* The Forecast class represents the data returned
18+
* from the Dark Sky API
1819
*
1920
* @package VertigoLabs\Overcast
20-
* from the Dark Sky API
2121
*/
2222
class Forecast
2323
{

src/Overcast.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
/**
2020
* Class Overcast
2121
*
22+
* The Overcast class provides access to the Dark Sky API
2223
*
2324
* @package VertigoLabs\Overcast
24-
* The Overcast class provides access to the Dark Sky API
2525
*/
2626
class Overcast
2727
{

0 commit comments

Comments
 (0)