Skip to content

Commit

Permalink
List contributors, correct English issue
Browse files Browse the repository at this point in the history
  • Loading branch information
curran committed Jan 29, 2018
1 parent 1d01bae commit 1115f81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// json-templates
// Simple templating within JSON structures.
//
// By Curran Kelleher and Chrostophe Serafin
// November 2016
// Created by Curran Kelleher and Chrostophe Serafin.
// Contributions from Paul Brewer and Javier Blanco Martinez.
const objectPath = require('object-path');
const dedupe = require('dedupe');

Expand Down
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ describe('json-template', () => {

// This section tests that the parse function is capable to replace simple strings, objects and arrays
describe('Replacement functionality', () => {
it('should replace the constiable with the given object without stringify', () => {
it('should replace object without stringify', () => {
const template = parse({
s: '1',
b: '{{c.d}}'
Expand All @@ -528,7 +528,7 @@ describe('json-template', () => {
assert.equal(JSON.stringify(template(context)), JSON.stringify(expected));
});

it('should replace the constiable with the given array without stringify', () => {
it('should replace array without stringify', () => {
const template = parse({
s: '1',
b: '{{c.d}}'
Expand Down

0 comments on commit 1115f81

Please sign in to comment.