Skip to content

Commit e965298

Browse files
committed
improve license info
1 parent ce798c6 commit e965298

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

src/core/vdom/patch.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
/**
2-
* Virtual DOM implementation based on Snabbdom by
2+
* Virtual DOM patching algorithm based on Snabbdom by
33
* Simon Friis Vindum (@paldepind)
4-
* with custom modifications.
4+
* Licensed under the MIT License
5+
* https://github.com/paldepind/snabbdom/blob/master/LICENSE
56
*
7+
* modified by Evan You (@yyx990803)
8+
*
9+
10+
/*
611
* Not type-checking this because this file is perf-critical and the cost
712
* of making flow understand it is not worth it.
813
*/

src/server/render-stream.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
/* @flow */
22

3-
import stream from 'stream'
4-
import { createWriteFunction } from './write'
5-
63
/**
74
* Original RenderStream implmentation by Sasha Aickin (@aickin)
85
* Licensed under the Apache License, Version 2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
98
* Modified by Evan You (@yyx990803)
109
*/
10+
11+
import stream from 'stream'
12+
import { createWriteFunction } from './write'
13+
1114
export default class RenderStream extends stream.Readable {
1215
buffer: string;
1316
render: Function;

0 commit comments

Comments
 (0)