Skip to content

Commit 7990700

Browse files
committed
Auto-generated commit
1 parent 5a57941 commit 7990700

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-11)
7+
## Unreleased (2025-08-12)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
1516
- [`0ba282b`](https://github.com/stdlib-js/stdlib/commit/0ba282b89c384f06bbe3ff8ecd71982f05209606) - **chore:** minor clean-up _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <166795493+AbhishekG-Codes@users.noreply.github.com>
1313
Abhishek Jain <40913033+abhishekblue@users.noreply.github.com>
1414
Adarsh Palaskar <adarshpalaskar99@gmail.com>
1515
Aditya Sapra <adityaework@gmail.com>
16+
Aditya Singh <adityasinghk099@gmail.com>
1617
Ahmed Atwa <Ahmedatwa866@yahoo.com>
1718
Ahmed Kashkoush <ahmedkashkoush464@gmail.com>
1819
Ahmed Khaled <kahmd1444@gmail.com>
@@ -121,6 +122,7 @@ Muhammad Haris <harriskhan047@outlook.com>
121122
Muhammad Taaha Tariq <166188821+Taaha-Tariq@users.noreply.github.com>
122123
Muhmmad Saad <106260977+saad-imran-dev@users.noreply.github.com>
123124
NEEKUorAAYUSH <aayush10072004@gmail.com>
125+
Nakul Krishnakumar <nakulkrishnakumar86@gmail.com>
124126
Naresh Jagadeesan <naresh.naresh000@gmail.com>
125127
Naveen Kumar <stupiddint@gmail.com>
126128
Neeraj Pathak <neerajrpathak710@gmail.com>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var reDecimalNumber = require( '@stdlib/regexp-decimal-number' );
6565

6666
#### reDecimalNumber( \[options] )
6767

68-
Returns a [regular expression][mdn-regexp] to match a decimal number.
68+
Returns a [regular expression][mdn-regexp] to match a decimal number.
6969

7070
```javascript
7171
var RE_DECIMAL_NUMBER = reDecimalNumber();
@@ -112,7 +112,7 @@ out = RE_DECIMAL_NUMBER.exec( '' );
112112

113113
#### reDecimalNumber.REGEXP
114114

115-
[Regular expression][mdn-regexp] to match a decimal number.
115+
[Regular expression][mdn-regexp] to match a decimal number.
116116

117117
```javascript
118118
var bool = reDecimalNumber.REGEXP.test( '2:3' );
@@ -121,7 +121,7 @@ var bool = reDecimalNumber.REGEXP.test( '2:3' );
121121

122122
#### reDecimalNumber.REGEXP_CAPTURE
123123

124-
[Regular expression][mdn-regexp] to capture characters matching a decimal number.
124+
[Regular expression][mdn-regexp] to capture characters matching a decimal number.
125125

126126
```javascript
127127
var parts = reDecimalNumber.REGEXP_CAPTURE.exec( '1.234' );
@@ -150,13 +150,13 @@ var parts = reDecimalNumber.REGEXP_CAPTURE.exec( '1.234' );
150150
// returns false
151151
```
152152

153-
- The `REGEXP` regular expression is defined as
153+
- The `REGEXP` regular expression is defined as
154154

155155
```text
156156
/[-+]{0,1}[0-9]*\.[0-9]+/
157157
```
158158

159-
- The `REGEXP_CAPTURE` regular expression is defined as
159+
- The `REGEXP_CAPTURE` regular expression is defined as
160160

161161
```text
162162
/([-+]{0,1}[0-9]*\.[0-9]+)/

0 commit comments

Comments
 (0)