Skip to content

Commit 13dfed8

Browse files
committed
Rename directory
1 parent b8c5bf6 commit 13dfed8

File tree

20 files changed

+8
-8
lines changed

20 files changed

+8
-8
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
## Usage
1414

1515
``` javascript
16-
var toReference = require( '/path/to/stdlib/tools/citation-to-reference' );
16+
var toReference = require( '/path/to/stdlib/tools/citation-reference' );
1717
```
1818

1919
<a name="to-reference"></a>
@@ -102,7 +102,7 @@ The method accepts the same `options` as [`toReference()`](#to-reference) above.
102102
## Examples
103103

104104
``` javascript
105-
var toReference = require( '/path/to/stdlib/tools/citation-to-reference' );
105+
var toReference = require( '/path/to/stdlib/tools/citation-reference' );
106106

107107
/* bib.bib
108108
@book{press:1992,
@@ -149,7 +149,7 @@ function clbk( error, reference ) {
149149
### Usage
150150

151151
``` bash
152-
Usage: citation-to-reference [options] <citation_identifier>
152+
Usage: citation-reference [options] <citation_identifier>
153153

154154
Options:
155155

@@ -166,7 +166,7 @@ Options:
166166
### Examples
167167

168168
``` bash
169-
$ citation-to-reference '@press:1992'
169+
$ citation-reference '@press:1992'
170170
# => '...'
171171
```
172172

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tools/bib/citation-to-reference/lib/index.js renamed to tools/bib/citation-reference/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
/**
44
* Return a reference corresponding to a citation identifier.
55
*
6-
* @module @stdlib/tools/citation-to-reference
6+
* @module @stdlib/tools/citation-reference
77
*
88
* @example
9-
* var toReference = require( '/path/to/stdlib/tools/citation-to-reference' );
9+
* var toReference = require( '/path/to/stdlib/tools/citation-reference' );
1010
*
1111
* toReference( '@press1992', clbk );
1212
*
@@ -18,7 +18,7 @@
1818
* }
1919
*
2020
* @example
21-
* var toReference = require( '/path/to/stdlib/tools/citation-to-reference' );
21+
* var toReference = require( '/path/to/stdlib/tools/citation-reference' );
2222
*
2323
* var ref = toReference.sync( '@press1992' );
2424
* // returns '...'

0 commit comments

Comments
 (0)