Skip to content

Commit

Permalink
Merge pull request #13 from nikuda/webcrypto
Browse files Browse the repository at this point in the history
Using string instead of buffer for proto file
  • Loading branch information
dignifiedquire committed Oct 4, 2016
2 parents d4f1a4f + 089b7a4 commit 5f72426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unixfs.proto.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

module.exports = new Buffer(`message Data {
module.exports = `message Data {
enum DataType {
Raw = 0;
Directory = 1;
Expand All @@ -18,4 +18,4 @@ module.exports = new Buffer(`message Data {
message Metadata {
required string MimeType = 1;
}
`)
`

0 comments on commit 5f72426

Please sign in to comment.