Skip to content

Commit cf26cf6

Browse files
committed
Update README.md
1 parent 71a9fda commit cf26cf6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ The wrapper can easily be imported into your project using the [SSLLWrapper NuGe
1515
**PM> Install-Package SSLLWrapper**
1616

1717
### Wrapper Usage
18-
When creating a new instance of SSL Labs wrapper service you must supply the API url during the initialization. For example in C# this would be expressed as the following:
18+
When creating a new instance of SSL Labs api wrapper service you must supply the API url during the initialization. For example in C# this would be expressed as the following:
1919
```C#
20-
var ssllService = new SSLLWrapper.SSLLService("https://api.dev.ssllabs.com/api/fa78d5a4");
20+
var ssllService = new SSLLabsApiWrapper.SSLLabsApiService("https://api.dev.ssllabs.com/api/fa78d5a4");
2121

22-
// Or if you use the SSLWrapper namespace this can be shorten to
23-
var ssllService = new SSLLService("https://api.dev.ssllabs.com/api/fa78d5a4");
22+
// Or if you use the SSLLabsApiWrapper namespace this can be shorten to
23+
var ssllService = new SSLLabsApiService("https://api.dev.ssllabs.com/api/fa78d5a4");
2424
```
2525
#### Methods
2626

27-
Below are the method signatures of the SSL Labs wrapper service.
27+
Below are the method signatures of the SSL Labs api wrapper service.
2828

2929
##### Info()
3030

31-
The Info method is used to determine if the API is online and returns an [Info response object](https://github.com/AshleyPoole/SSLLWrapper/blob/master/README.md#info-1). No input parameters are taken.
31+
The Info method is used to determine if the API is online and returns an [Info response object](https://github.com/AshleyPoole/sslLabs-api-wrapper/blob/master/README.md#info-1). No input parameters are taken.
3232

3333
```C#
3434
public Info Info()

0 commit comments

Comments
 (0)