From 05116650f711a55bf7385737ce2c94087b6bf12e Mon Sep 17 00:00:00 2001 From: Benny Zanuarwan Date: Sat, 30 May 2020 19:48:59 +0700 Subject: [PATCH] Update typo console.log in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c77692d..5ed450e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This repo contains a bare-bones example of how to create a library using Rollup, We're creating a library called `how-long-till-lunch`, which usefully tells us how long we have to wait until lunch, using the [ms](https://github.com/zeit/ms) package: ```js -console.log('it will be lunchtime in ' + howLongTillLunch()); +console.log('it will be lunchtime in ' + howLongUntilLunch()); ``` ## Getting started