diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-10-06 08:38:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-06 08:38:45 +0800 |
commit | 363b527bc54228c8f34b937730752c8dd86746b9 (patch) | |
tree | 213b6b510a9b9a3eea7946168553f174e3697453 /docs | |
parent | 12be3228b98e05dff7200e7e346621e6296819c3 (diff) | |
parent | 6706f3eb965d018466d35122dca0f65c169a1f1c (diff) | |
download | dexon-solidity-363b527bc54228c8f34b937730752c8dd86746b9.tar.gz dexon-solidity-363b527bc54228c8f34b937730752c8dd86746b9.tar.zst dexon-solidity-363b527bc54228c8f34b937730752c8dd86746b9.zip |
Merge pull request #5148 from ethereum/chriseth-patch-2
Remove non-ascii quotes.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 95967975..faef3fc2 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -785,7 +785,7 @@ Topics allow you to search for events, for example when filtering a sequence of blocks for certain events. You can also filter events by the address of the contract that emitted the event. -For example, the code below uses the web3.js ``subscribe(“logs”)`` +For example, the code below uses the web3.js ``subscribe("logs")`` `method <https://web3js.readthedocs.io/en/1.0/web3-eth-subscribe.html#subscribe-logs>`_ to filter logs that match a topic with a certain address value: |