Skip to content

Commit

Permalink
added a missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarywojcik authored Aug 7, 2016
1 parent 400cfcf commit f5f91ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Make sure to read [Apple's API Design Guidelines](https://swift.org/documentatio

Specifics from these guidelines + additional remarks are mentioned below.

This guide was last updated for Swift 2.2 on 08/06/2016.
This guide was last updated for Swift 2.2 on August 7th, 2016.

## Table Of Contents

Expand Down Expand Up @@ -125,7 +125,7 @@ if myFirstValue > (mySecondValue + myThirdValue)
```swift
someFunctionWithManyArguments(
firstArgument: "Hello, I am a string",
secondArgument: resultFromSomeFunction()
secondArgument: resultFromSomeFunction(),
thirdArgument: someOtherLocalProperty)
```

Expand Down

0 comments on commit f5f91ec

Please sign in to comment.