Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldraper committed Oct 16, 2023
1 parent dc752ca commit 3fb4571
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion angular/test/bazel/material/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion nodejs/fs-linker/src/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ function writeFileSync(

export function patchFs(
vfs: Vfs,
delegate: { -readonly [K in keyof typeof fs]: (typeof fs)[K] },
delegate: { -readonly [K in keyof typeof fs]: typeof fs[K] },
) {
delegate.access = access(vfs, delegate.access);
delegate.accessSync = accessSync(vfs, delegate.accessSync);
Expand Down
5 changes: 1 addition & 4 deletions util/starlark/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ export class StarlarkVariable {
}

export class StarlarkEqualStatement {
constructor(
readonly left: StarlarkVariable,
readonly right: StarlarkValue,
) {}
constructor(readonly left: StarlarkVariable, readonly right: StarlarkValue) {}
}

export type StarlarkStatement = StarlarkEqualStatement;
Expand Down

0 comments on commit 3fb4571

Please sign in to comment.