Skip to content

Commit 11e4095

Browse files
Jake ChampionJakeChampion
authored andcommitted
chore: fix formatting
1 parent f3b3e2f commit 11e4095

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

c-dependencies/js-compute-runtime/builtins/crypto-key.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,8 @@ bool CryptoKey::usages_get(JSContext *cx, unsigned argc, JS::Value *vp) {
315315
}
316316
// Else, grab the CryptoKeyUsages value from Slots::Usages and convert
317317
// it into a JS Array and store the result in Slots::UsagesArray.
318-
auto usage = CryptoKeyUsages(static_cast<uint8_t>(JS::GetReservedSlot(self, Slots::Usages).toInt32()));
318+
auto usage =
319+
CryptoKeyUsages(static_cast<uint8_t>(JS::GetReservedSlot(self, Slots::Usages).toInt32()));
319320
// The result is ordered alphabetically.
320321
JS::RootedValueVector result(cx);
321322
JS::RootedString str(cx);

0 commit comments

Comments
 (0)