From 7567a92ca75081ee8a2025661127d048b7916627 Mon Sep 17 00:00:00 2001 From: sunnylqm Date: Fri, 18 Dec 2015 23:50:43 +0800 Subject: [PATCH] fix a typo of a prop name --- docs/CommunicationIOS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CommunicationIOS.md b/docs/CommunicationIOS.md index 7b23c80ee..3e430636f 100644 --- a/docs/CommunicationIOS.md +++ b/docs/CommunicationIOS.md @@ -54,7 +54,7 @@ class ImageBrowserApp extends React.Component { render() { return ( - {this.props.imageList.map(this.renderImage)} + {this.props.images.map(this.renderImage)} ); }