Skip to content

Commit fb7cc6d

Browse files
committed
Auto-generated commit
1 parent e422fd7 commit fb7cc6d

File tree

4 files changed

+29
-28
lines changed

4 files changed

+29
-28
lines changed

.github/.keepalive

-1
This file was deleted.

CHANGELOG.md

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

7-
## Unreleased (2024-12-01)
7+
## Unreleased (2024-12-08)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`7e8187a`](https://github.com/stdlib-js/stdlib/commit/7e8187a766886c2fb9cdc356cf781f0a1802172c) - **docs:** update related packages sections [(#3368)](https://github.com/stdlib-js/stdlib/pull/3368) _(by stdlib-bot)_
1516
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

+10-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Aayush Khanna <[email protected]>
66
Abhijit Raut <[email protected]>
77
Adarsh Palaskar <[email protected]>
88
Aditya Sapra <[email protected]>
9-
AgPriyanshu18 <[email protected]>
9+
Ahmed Atwa <[email protected]>
10+
Ahmed Kashkoush <[email protected]>
1011
Aleksandr <[email protected]>
1112
Ali Salesi <[email protected]>
1213
Aman Bhansali <[email protected]>
@@ -60,32 +61,34 @@ Momtchil Momtchev <[email protected]>
6061
Muhammad Haris <[email protected]>
6162
Naresh Jagadeesan <[email protected]>
6263
Neeraj Pathak <[email protected]>
63-
NightKnight <Ahmedatwa866@yahoo.com>
64+
Nishant Shinde <[email protected].com>
6465
Nithin Katta <[email protected]>
6566
Nourhan Hasan <[email protected]>
6667
Ognjen Jevremović <[email protected]>
6768
Oneday12323 <[email protected]>
69+
Ori Miles <[email protected]>
6870
Philipp Burckhardt <[email protected]>
6971
Prajwal Kulkarni <[email protected]>
7072
Pranav Goswami <[email protected]>
7173
7274
7375
Pratyush Kumar Chouhan <[email protected]>
7476
77+
Priyanshu Agarwal <[email protected]>
7578
Pushpendra Chandravanshi <[email protected]>
76-
7779
Raunak Kumar Gupta <[email protected]>
7880
Rejoan Sardar <[email protected]>
7981
Ricky Reusser <[email protected]>
8082
Ridam Garg <[email protected]>
83+
8184
Robert Gislason <[email protected]>
8285
Roman Stetsyk <[email protected]>
83-
86+
Rutam Kathale <[email protected]>
8487
Ruthwik Chikoti <[email protected]>
8588
Ryan Seal <[email protected]>
8689
Rylan Yang <[email protected]>
8790
Sai Srikar Dumpeti <[email protected]>
88-
SarthakPaandey <[email protected]>
91+
Sarthak Paandey <[email protected]>
8992
Saurabh Singh <[email protected]>
9093
Seyyed Parsa Neshaei <[email protected]>
9194
Shashank Shekhar Singh <[email protected]>
@@ -98,7 +101,7 @@ Snehil Shah <[email protected]>
98101
Soumajit Chatterjee <[email protected]>
99102
Spandan Barve <[email protected]>
100103
Stephannie Jiménez Gacha <[email protected]>
101-
Suraj kumar <[email protected]>
104+
Suraj Kumar <[email protected]>
102105
Tirtadwipa Manunggal <[email protected]>
103106
Tudor Pagu <[email protected]>
104107
Tufailahmed Bargir <[email protected]>
@@ -109,11 +112,9 @@ Vaibhav Patel <[email protected]>
109112
Varad Gupta <[email protected]>
110113
Vinit Pandit <[email protected]>
111114
Xiaochuan Ye <[email protected]>
115+
Yaswanth Kosuru <[email protected]>
112116
Yernar Yergaziyev <[email protected]>
113117
114-
nishant-s7 <[email protected]>
115118
olenkabilonizhka <[email protected]>
116-
orimiles5 <[email protected]>
117119
118120
119-

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -107,21 +107,21 @@ var out = format( str, 'foo', 'bar', 'baz' );
107107

108108
The following table summarizes the supported specifiers:
109109

110-
| type | description | example |
111-
| ---- | ---------------------------------- | ------------ |
112-
| s | string | beep boop |
113-
| c | character | a |
114-
| d, i | signed decimal integer | -12 |
115-
| u | unsigned decimal integer | 390 |
116-
| b | unsigned binary integer | 11011011 |
117-
| o | unsigned octal integer | 510 |
118-
| x | unsigned hexadecimal (lowercase) | 7b |
119-
| X | unsigned hexadecimal (uppercase) | 7B |
120-
| f, F | decimal floating point | 390.24 |
121-
| e | scientific notation (lowercase) | 3.9e+1 |
122-
| E | scientific notation (uppercase) | 3.9E+1 |
123-
| g | shortest representation (`e`/`f`) | 3.9 |
124-
| G | shortest representation (`E`/`F`) | 3.9 |
110+
| type | description | example |
111+
| ---- | --------------------------------- | --------- |
112+
| s | string | beep boop |
113+
| c | character | a |
114+
| d, i | signed decimal integer | -12 |
115+
| u | unsigned decimal integer | 390 |
116+
| b | unsigned binary integer | 11011011 |
117+
| o | unsigned octal integer | 510 |
118+
| x | unsigned hexadecimal (lowercase) | 7b |
119+
| X | unsigned hexadecimal (uppercase) | 7B |
120+
| f, F | decimal floating point | 390.24 |
121+
| e | scientific notation (lowercase) | 3.9e+1 |
122+
| E | scientific notation (uppercase) | 3.9E+1 |
123+
| g | shortest representation (`e`/`f`) | 3.9 |
124+
| G | shortest representation (`E`/`F`) | 3.9 |
125125

126126
```javascript
127127
var str = '%i written as a binary number is %b.';
@@ -214,8 +214,8 @@ The `precision` may be specified as a decimal integer or as an asterisk characte
214214

215215
- For `s` specifiers, the `precision` specifies the maximum number of characters to be written to the output.
216216
- For floating point specifiers (`f`, `F`, `e`, `E`), the `precision` specifies the number of digits after the decimal point to be written to the output (by default, this is `6`).
217-
- For `g` and `G` specifiers, the `precision` specifies the maximum number of significant digits to be written to the output.
218-
- For integer specifiers (`d`, `i`, `u`, `b`, `o`, `x`, `X`), the `precision` specifies the minimum number of digits to be written to the output. If the value to be written is shorter than this number, the result is padded with zeros on the left. The value is not truncated even if the result is longer. For
217+
- For `g` and `G` specifiers, the `precision` specifies the maximum number of significant digits to be written to the output.
218+
- For integer specifiers (`d`, `i`, `u`, `b`, `o`, `x`, `X`), the `precision` specifies the minimum number of digits to be written to the output. If the value to be written is shorter than this number, the result is padded with zeros on the left. The value is not truncated even if the result is longer. For
219219

220220
Alternatively, the `precision` may be specified as an asterisk character (`*`), in which case the argument preceding the conversion specification is used as the minimum number of digits.
221221

0 commit comments

Comments
 (0)