Skip to content

Commit e8ab1bc

Browse files
committed
chore: remove trailing newlines from contributing sections in README files
1 parent 2ed06c4 commit e8ab1bc

File tree

25 files changed

+20
-62
lines changed

25 files changed

+20
-62
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
3333
### Contributing
3434

3535
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
36-
37-

packages/async-queue/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
5959
### Contributing
6060

6161
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
62-
63-

packages/dedupe/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
2323
### Contributing
2424

2525
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
26-
27-

packages/deep-clone/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
3434
### Contributing
3535

3636
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
37-
38-

packages/env/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
7474
### Contributing
7575

7676
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
77-
78-

packages/eslint-config/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
3333
### Contributing
3434

3535
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
36-
37-

packages/exit-hook/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
2727
### Contributing
2828

2929
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
30-
31-

packages/flat-string/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
2727
### Contributing
2828

2929
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
30-
31-

packages/flatomise/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ The following companies, organizations, and individuals support Nanolib ongoing
2929
### Contributing
3030

3131
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
32-
33-

packages/hash-string/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ npm install @alwatr/hash-string
1717
import {nanoHash} from '@alwatr/hash-string';
1818

1919
// Hash a string with a prefix
20-
nanoHash('test', 'prefix-'); // => 'prefix-j26j3d4'
20+
nanoHash('test', 'prefix-'); // => 'prefix-j26j3d4'
2121

2222
// Hash a number
23-
nanoHash(12345, 'num-'); // => 'num-8hu3f2l'
23+
nanoHash(12345, 'num-'); // => 'num-8hu3f2l'
2424

2525
// Adjust complexity with repeat parameter
26-
nanoHash('test', 'p-', 1); // => 'p-7ba2n3y' (faster, less complex)
27-
nanoHash('test', 'p-', 5); // => 'p-3f72h9b' (slower, more complex)
26+
nanoHash('test', 'p-', 1); // => 'p-7ba2n3y' (faster, less complex)
27+
nanoHash('test', 'p-', 5); // => 'p-3f72h9b' (slower, more complex)
2828
```
2929

3030
## API
@@ -68,16 +68,16 @@ For security-critical applications, use established cryptographic hash functions
6868

6969
```typescript
7070
// Generate a hash for a string
71-
nanoHash('hello world', 'msg-'); // => 'msg-k7f2h9d'
71+
nanoHash('hello world', 'msg-'); // => 'msg-k7f2h9d'
7272

7373
// Generate a hash for a number
74-
nanoHash(42, 'id-'); // => 'id-p83b2e4'
74+
nanoHash(42, 'id-'); // => 'id-p83b2e4'
7575

7676
// Same input produces the same output
77-
nanoHash('test', 'x-') === nanoHash('test', 'x-'); // => true
77+
nanoHash('test', 'x-') === nanoHash('test', 'x-'); // => true
7878

7979
// Different inputs produce different outputs
80-
nanoHash('test1', 'x-') !== nanoHash('test2', 'x-'); // => true
80+
nanoHash('test1', 'x-') !== nanoHash('test2', 'x-'); // => true
8181
```
8282

8383
### Controlling Complexity
@@ -117,7 +117,7 @@ The package includes the DJB2 hash algorithm, a fast and efficient string hashin
117117
// Generate a numeric hash value
118118
import {djb2Hash} from '@alwatr/hash-string';
119119

120-
const hashValue = djb2Hash("hello world"); // Returns a 32-bit unsigned integer
120+
const hashValue = djb2Hash('hello world'); // Returns a 32-bit unsigned integer
121121
```
122122

123123
Key features of djb2Hash:

0 commit comments

Comments
 (0)