From 9b8cc092ea1b933ab2b48a6ef92209fd59bc2dc0 Mon Sep 17 00:00:00 2001 From: mzack Date: Sat, 12 Nov 2022 01:57:20 +0100 Subject: [PATCH] small refactor --- .github/workflows/build-test.yml | 4 ++-- README.md | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 3f8c12b..525ad49 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -21,5 +21,5 @@ jobs: - name: Test run: go test ./... - - name: Build - run: go build ./example/main.go \ No newline at end of file + - name: Build Example + run: go build example/main.go \ No newline at end of file diff --git a/README.md b/README.md index 56d717b..2dadcb0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A Golang rate limit implementation which allows burst of request during the defi ## Example -An Example showing usage of ratelimit as a library is specified below. +An Example showing usage of ratelimit as a library is specified below: ```go package main @@ -50,5 +50,4 @@ func main() { Task 9 completed after 10.001548666s */ } - ```