Skip to content

Commit c6fd0b1

Browse files
committedJun 13, 2019
Documentation
1 parent 3aa14f5 commit c6fd0b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ $ composer require otherguy/php-currency-api
5050
The [`Otherguy\Currency\Symbol`](src/Symbol.php) class provides constants for each supported currency. This is merely
5151
a helper and does not need to be used. You can simply pass strings like `'USD', 'EUR', ...` to most methods.
5252

53-
> Please note that you are not required to use `Otherguy\Currency\Symbol` to specify symbols. It's simply a convenience helper.
53+
> **Note:** You are not required to use `Otherguy\Currency\Symbol` to specify symbols. It's simply a convenience helper.
5454
5555
```php
5656
// 'USD'
@@ -109,7 +109,7 @@ $currency->config('format', '1');
109109
### Set Base Currency
110110
You can use either `from()` or `source()` to set the base currency. The methods are identical.
111111

112-
> **Note:** Each driver sets its own default base currency. [FixerIO](https://fixer.io) uses `EUR` as base currency
112+
> **Note:** Each driver sets its own default base currency. [FixerIO](https://fixer.io) uses `EUR` as base currency
113113
> while [CurrencyLayer](https://currencylayer.com) uses `USD`.
114114
115115
Most services only allow you to change the base currency in their paid plans. The driver will throw a
@@ -124,7 +124,7 @@ $currency->from(Otherguy\Currency\Symbol::USD);
124124
You can use either `to()` or `symbols()` to set the return currencies. The methods are identical. Pass a single currency
125125
or an array of currency symbols to either of these methods.
126126

127-
> **Note:** Pass an empty array to return all currency symbols supported by this driver. This is the default if you
127+
> **Note:** Pass an empty array to return all currency symbols supported by this driver. This is the default if you
128128
> don't call the method at all.
129129
130130
```php
@@ -152,7 +152,7 @@ $currency->historical('2018-07-01');
152152
### Convert Amount
153153
Use the `convert()` method to convert amounts between currencies.
154154

155-
> **Note:** Most API providers don't allow access to this method using your free account. You can still use the
155+
> **Note:** Most API providers don't allow access to this method using your free account. You can still use the
156156
> [Latest Rates](#latest-rates) or [Historical Rates](#historical-rates) endpoints and perform calculations or conversions
157157
> on the [`ConversionResult`](#conversion-result) object.
158158

0 commit comments

Comments
 (0)
Failed to load comments.