Skip to content

Commit 6f7c4a4

Browse files
author
Ignacio Romero Zurbuchen
committed
Merge pull request slackhq#192 from gimenete/patch-1
Fixed wrong variable name `typeIndicatorView`.
2 parents 522f9c1 + 593b186 commit 6f7c4a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ Use the `editing` property to know if the editing mode is on.
219219
220220
Optionally, you can enable a simple typing indicator, which will be displayed right above the text input. It shows the name of the people that are typing, and if more than 2, it will display "Several are typing" message.
221221
222-
To enable the typing indicator, just call `[self.typeIndicatorView insertUsername:@"John"];` and the view will automatically be animated on top of the text input. After a default interval of 6 seconds, if the same name hasn't been assigned once more, the view will be dismissed with animation.
222+
To enable the typing indicator, just call `[self.typingIndicatorView insertUsername:@"John"];` and the view will automatically be animated on top of the text input. After a default interval of 6 seconds, if the same name hasn't been assigned once more, the view will be dismissed with animation.
223223
224-
You can remove names from the list by calling `[self.typeIndicatorView removeUsername:@"John"];`
224+
You can remove names from the list by calling `[self.typingIndicatorView removeUsername:@"John"];`
225225
226-
You can also dismiss it by calling `[self.typeIndicatorView dismissIndicator];`
226+
You can also dismiss it by calling `[self.typingIndicatorView dismissIndicator];`
227227
228228
###Panning Gesture
229229

0 commit comments

Comments
 (0)