Skip to content

Fix typo in spec.md#338

Open
anamoyee wants to merge 1 commit into
bazelbuild:masterfrom
anamoyee:anamoyee-patch-1
Open

Fix typo in spec.md#338
anamoyee wants to merge 1 commit into
bazelbuild:masterfrom
anamoyee:anamoyee-patch-1

Conversation

@anamoyee
Copy link
Copy Markdown

Fix typo where the "e" is lowercase in format specifier G for float, whereas it should be uppercase since the "G" format specifier is producing uppercease "E"

$> '%g' % 1e+45
"1e+45"
$> '%G' % 1e+45
"1E+45"

Fix typo where the "e" is lowercase in format specifier G for float, whereas it should be uppercase since the "G" format specifier is producing uppercease "E"

```starlark-cli
$> '%g' % 1e+45
"1e+45"
$> '%G' % 1e+45
"1E+45"
```
@anamoyee anamoyee requested a review from brandjon as a code owner February 12, 2026 12:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants