diff --git a/docs/NativeModulesAndroid.md b/docs/NativeModulesAndroid.md index d75c60cea..2bf46cc5c 100644 --- a/docs/NativeModulesAndroid.md +++ b/docs/NativeModulesAndroid.md @@ -129,11 +129,12 @@ To make it simpler to access your new functionality from JavaScript, it is commo ```js 'use strict'; /** - * This exposes the native ToastAndroid module as a JS module. This has a function 'show' - * which takes the following parameters: + * This exposes the native ToastAndroid module as a JS module. This has a + * function 'show' which takes the following parameters: * * 1. String message: A string with the text to toast - * 2. int duration: The duration of the toast. May be ToastAndroid.SHORT or ToastAndroid.LONG + * 2. int duration: The duration of the toast. May be ToastAndroid.SHORT or + * ToastAndroid.LONG */ var { NativeModules } = require('react-native'); module.exports = NativeModules.ToastAndroid;