Skip to content

Commit b7421c0

Browse files
authored
fix formatting of README.md
1 parent 175c051 commit b7421c0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Authorize.Net .Net SDK
22

3-
[![Travis](https://img.shields.io/travis/AuthorizeNet/sdk-dotnet/master.svg)]
4-
(https://travis-ci.org/AuthorizeNet/sdk-dotnet)
3+
[![Travis](https://img.shields.io/travis/AuthorizeNet/sdk-dotnet/master.svg)](https://travis-ci.org/AuthorizeNet/sdk-dotnet)
54
[![Code Climate](https://codeclimate.com/github/AuthorizeNet/sdk-dotnet/badges/gpa.svg)](https://codeclimate.com/github/AuthorizeNet/sdk-dotnet)
65
[![NuGet](https://badge.fury.io/nu/authorizenet.svg)](https://www.nuget.org/packages/authorizenet)
76

@@ -27,7 +26,7 @@ Apart from this README, you can find details and examples of using the SDK in th
2726
- [Developer Center Reference](http://developer.authorize.net/api/reference/index.html)
2827

2928
### Charging a Credit Card
30-
````csharp
29+
```csharp
3130
ApiOperationBase<ANetApiRequest, ANetApiResponse>.RunEnvironment = AuthorizeNet.Environment.SANDBOX;
3231

3332
ApiOperationBase<ANetApiRequest, ANetApiResponse>.MerchantAuthentication = new merchantAuthenticationType()
@@ -70,7 +69,7 @@ Apart from this README, you can find details and examples of using the SDK in th
7069
{
7170
Console.WriteLine("Error: " + response.messages.message[0].code + " " + response.messages.message[0].text);
7271
}
73-
````
72+
```
7473

7574
### Setting the Production Environment
7675
Set the appropriate environment constant using the ApiOperationBase RunEnvironment. For example, in the method above, to switch to production environment use:

0 commit comments

Comments
 (0)