Skip to content

Commit dc3ebbd

Browse files
committed
rename
1 parent 1ef7f5e commit dc3ebbd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A lightweight Go library for efficient English word validation using [Bloom filters](https://en.wikipedia.org/wiki/Bloom_filter). Perfect for spell-checking, word games, and text validation with minimal memory footprint.
44

5-
[![Go Reference](https://pkg.go.dev/badge/github.com/oosawy/bloom-words.svg)](https://pkg.go.dev/github.com/oosawy/bloom-words)
5+
[![Go Reference](https://pkg.go.dev/badge/github.com/oosawy/bloomwords.svg)](https://pkg.go.dev/github.com/oosawy/bloomwords)
66

77
## What is Bloom Words?
88

@@ -26,7 +26,7 @@ Bloom Words is a Go library that validates English words using Bloom filters—a
2626
## Installation
2727

2828
```bash
29-
go get github.com/oosawy/bloom-words
29+
go get github.com/oosawy/bloomwords
3030
```
3131

3232
## Usage
@@ -40,7 +40,7 @@ import (
4040
"fmt"
4141
"log"
4242

43-
bw "github.com/oosawy/bloom-words"
43+
bw "github.com/oosawy/bloomwords"
4444
)
4545

4646
func main() {

bloomwords_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package bloomwords_test
33
import (
44
"testing"
55

6-
bloomwords "github.com/oosawy/bloom-words"
6+
bloomwords "github.com/oosawy/bloomwords"
77
)
88

99
func TestBloomWordsWithCommonWords(t *testing.T) {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/oosawy/bloom-words
1+
module github.com/oosawy/bloomwords
22

33
go 1.25.1
44

0 commit comments

Comments
 (0)