Skip to content

Commit

Permalink
Fix typo (null should say undefined).
Browse files Browse the repository at this point in the history
  • Loading branch information
websanova committed Jun 14, 2017
1 parent 6d1209c commit d1a9491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -61,7 +61,7 @@ url(-1); // index.html
url('query'); // query1=test&silly=willy
url('?'); // {query1: 'test', silly: 'willy', field: ['zero', undefined, 'two']}
url('?silly'); // willy
url('?poo'); // null
url('?poo'); // undefined
url('field[0]') // zero
url('field') // ['zero', undefined, 'two']
url('hash'); // test=hash&chucky=cheese
Expand Down

0 comments on commit d1a9491

Please sign in to comment.