We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b328792 commit afdf2a5Copy full SHA for afdf2a5
README.md
@@ -26,11 +26,11 @@ let fetcher = EmojiFetcher()
26
##### 2. Use EmojiFetcher's `query` function to get an array of `Emoji` structs that match the given search string.
27
28
```swift
29
- fetcher.query("food") { emojiResults in
30
- for (emoji) in emojiResults {
31
- print("Current Emoji: \(emoji.character) \(emoji.name)")
32
- }
+fetcher.query("food") { emojiResults in
+ for emoji in emojiResults {
+ print("Current Emoji: \(emoji.character) \(emoji.name)")
33
}
+}
34
```
35
36
Contributing
0 commit comments