v1.0.1: fix typos in docs and comments

This commit is contained in:
AJ ONeal 2018-11-25 21:23:26 -07:00
parent baf56d7466
commit 3d084a52b4
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# BlueCrypt ASN.1 Parser
# Bluecrypt ASN.1 Parser
An ASN.1 parser in less than 100 lines of Vanilla JavaScript,
part of the BlueCrypt suite.
part of the Bluecrypt suite.
<br>
<small>(< 150 with newlines and comments)</small>
@ -32,7 +32,7 @@ part of the BlueCrypt suite.
```
```js
'use strict";
'use strict';
var ASN1 = window.ASN1 // 62 lines
var Enc = window.Enc // 27 lines
@ -92,5 +92,5 @@ to produce a small, focused file that does exactly what it needs to do.
# Legal
[BlueCrypt VanillaJS ASN.1 Parser](https://git.coolaj86.com/coolaj86/asn1-parser.js) |
[Bluecrypt VanillaJS ASN.1 Parser](https://git.coolaj86.com/coolaj86/asn1-parser.js) |
MPL-2.0

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>ASN.1 Parser - BlueCrypt</title>
<title>ASN.1 Parser - Bluecrypt</title>
<style>
textarea {
width: 42em;
@ -10,7 +10,7 @@
</style>
</head>
<body>
<h1>BlueCrypt ASN.1 Parser</h1>
<h1>Bluecrypt ASN.1 Parser</h1>
<textarea class="js-input" placeholder="Paste a PEM here">-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIT1SWLxsacPiE5Z16jkopAn8/+85

View File

@ -1,7 +1,7 @@
{
"name": "asn1-parser",
"version": "1.0.0",
"description": "An ASN.1 parser in less than 100 lines of Vanilla JavaScript, part of the BlueCrypt suite.",
"version": "1.0.1",
"description": "An ASN.1 parser in less than 100 lines of Vanilla JavaScript, part of the Bluecrypt suite.",
"homepage": "https://git.coolaj86.com/coolaj86/asn1-parser.js",
"main": "asn1-parser.js",
"directories": {