Skip to content

Commit aaa8ee8

Browse files
Tom Van CutsemTom Van Cutsem
authored andcommitted
minor fixes
1 parent 14e6206 commit aaa8ee8

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

doc/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
API Docs
22
========
33

4-
This module exports a single object named `Reflect`.
5-
6-
The ECMAScript 6 Proxy API allows one to intercept various operations on Javascript objects.
7-
8-
* Overview of all [supported traps](https://github.com/tvcutsem/harmony-reflect/tree/master/doc/traps.md) on proxies
4+
* Overview of all [supported Proxy traps](https://github.com/tvcutsem/harmony-reflect/tree/master/doc/traps.md) on proxies
95
* The [Reflect API](https://github.com/tvcutsem/harmony-reflect/tree/master/doc/api.md)
106
* The Proxy [Handler API](https://github.com/tvcutsem/harmony-reflect/tree/master/doc/handler_api.md)

doc/api.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Standard API
1+
# Reflect API
22

33
* [new Proxy(target, handler)](#newproxytarget_handler)
44
* [Proxy.revocable(target, handler)](#proxyrevocabletarget_handler)
@@ -20,8 +20,6 @@
2020

2121
## new Proxy(target, handler)
2222

23-
This is an alias for the global Proxy function.
24-
2523
Creates and returns a new proxy object. The `handler` object may define [trap functions](handler_api.md). These traps are called whenever an operation is applied to the proxy object.
2624

2725
Both target and handler must be non-null objects.

0 commit comments

Comments
 (0)