Fix location of code snippet in nativeImage docs
authorVadim Macagon <vadim.macagon@gmail.com>
Wed, 8 Jun 2016 16:34:45 +0000 (23:34 +0700)
committerVadim Macagon <vadim.macagon@gmail.com>
Wed, 8 Jun 2016 16:34:45 +0000 (23:34 +0700)
The code snippet for `nativeImage.createFromPath` somehow ended up in the wrong section of the document, this PR moves it back where it belongs.

docs/api/native-image.md

index 5244b71..d61f57e 100644 (file)
@@ -103,6 +103,12 @@ Creates an empty `nativeImage` instance.
 
 Creates a new `nativeImage` instance from a file located at `path`.
 
+```javascript
+const nativeImage = require('electron').nativeImage;
+
+let image = nativeImage.createFromPath('/Users/somebody/images/icon.png');
+```
+
 ### `nativeImage.createFromBuffer(buffer[, scaleFactor])`
 
 * `buffer` [Buffer][buffer]
@@ -121,12 +127,6 @@ Creates a new `nativeImage` instance from `dataURL`.
 
 The following methods are available on instances of `nativeImage`:
 
-```javascript
-const nativeImage = require('electron').nativeImage;
-
-let image = nativeImage.createFromPath('/Users/somebody/images/icon.png');
-```
-
 ### `image.toPng()`
 
 Returns a [Buffer][buffer] that contains the image's `PNG` encoded data.