Skip to content
This repository has been archived by the owner on Sep 6, 2018. It is now read-only.

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
djbe committed May 26, 2017
1 parent 91996e3 commit 24a12d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Documentation/strings/flat-swift2.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ enum L10n {

```swift
// Simple strings
let message = L10n.AlertMessage.string
let title = tr(.AlertTitle)
let message = L10n.AlertMessage
let title = L10n.AlertTitle

// with parameters, note that each argument needs to be of the correct type
let apples = L10n.ApplesCount(3)
Expand Down
4 changes: 2 additions & 2 deletions Documentation/strings/flat-swift3.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ enum L10n {

```swift
// Simple strings
let message = L10n.alertMessage.string
let title = tr(.alertTitle)
let message = L10n.alertMessage
let title = L10n.alertTitle

// with parameters, note that each argument needs to be of the correct type
let apples = L10n.applesCount(3)
Expand Down

0 comments on commit 24a12d7

Please sign in to comment.