Skip to content

Commit 2e8bb62

Browse files
committed
doc: fix bad merge on modules.markdown
My previous commit landed a bad merge on modules.markdown. This fixes it.
1 parent 09768e3 commit 2e8bb62

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

doc/api/modules.markdown

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,8 @@ plan accordingly.
120120
Node.js has several modules compiled into the binary. These modules are
121121
described in greater detail elsewhere in this documentation.
122122

123-
<<<<<<< HEAD
124-
The core modules are defined in Node.js's source in the `lib/` folder.
125-
=======
126-
The core modules are defined within io.js's source and are located in the
123+
The core modules are defined within Node.js's source and are located in the
127124
`lib/` folder.
128-
>>>>>>> doc: small clarifications to modules.markdown
129125

130126
Core modules are always preferentially loaded if their identifier is
131127
passed to `require()`. For instance, `require('http')` will always
@@ -135,14 +131,9 @@ return the built in HTTP module, even if there is a file by that name.
135131

136132
<!--type=misc-->
137133

138-
<<<<<<< HEAD
139134
If the exact filename is not found, then Node.js will attempt to load the
140-
required filename with the added extension of `.js`, `.json`, and then `.node`.
141-
=======
142-
If the exact filename is not found, then io.js will attempt to load the
143135
required filename with the added extensions: `.js`, `.json`, and finally
144136
`.node`.
145-
>>>>>>> doc: small clarifications to modules.markdown
146137

147138
`.js` files are interpreted as JavaScript text files, and `.json` files are
148139
parsed as JSON text files. `.node` files are interpreted as compiled addon

0 commit comments

Comments
 (0)