fixed spelling

This commit is contained in:
Fabian Vogelsteller 2017-03-14 10:11:39 +01:00
parent 7e02d379b6
commit b6c34b51f2
No known key found for this signature in database
GPG Key ID: E51EADA77F1A4124
4 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ var EventEmitter = require('eventemitter3');
var Promise = require("bluebird");
/**
* This function generates a defer promise and adds eventEmitter funcitonality to it
* This function generates a defer promise and adds eventEmitter functionality to it
*
* @method eventifiedPromise
*/

View File

@ -626,7 +626,7 @@ Contract.prototype.getPastEvents = function(){
/**
* returns the an object with call, send, estimate funcitons
* returns the an object with call, send, estimate functions
*
* @method _createTxObject
* @returns {Object} an object with functions to call the methods

View File

@ -1,7 +1,7 @@
{
"name": "web3-eth-iban",
"version": "1.0.0",
"description": "This package converts Ethereum addresses to IBAN adresses a vice versa.",
"description": "This package converts Ethereum addresses to IBAN addresses a vice versa.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-iban",
"license": "LGPL-3.0",
"main": "src/index.js",

View File

@ -441,7 +441,7 @@ var toBN = function(number){
* Checks if the given string is an address
*
* @method isAddress
* @param {String} address the given HEX adress
* @param {String} address the given HEX address
* @return {Boolean}
*/
var isAddress = function (address) {
@ -463,7 +463,7 @@ var isAddress = function (address) {
* Checks if the given string is a checksummed address
*
* @method checkAddressChecksum
* @param {String} address the given HEX adress
* @param {String} address the given HEX address
* @return {Boolean}
*/
var checkAddressChecksum = function (address) {
@ -486,7 +486,7 @@ var checkAddressChecksum = function (address) {
* Converts to a checksum address
*
* @method toChecksumAddress
* @param {String} address the given HEX adress
* @param {String} address the given HEX address
* @return {String}
*/
var toChecksumAddress = function (address) {