Skip to content

Commit

Permalink
typo fixed on code comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ShafayetAhmad committed Dec 6, 2023
1 parent 1f79fca commit 44381e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/docs/docs/learn/06-static-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ import type {StyleXStyles} from '@stylexjs/stylex';
type Props = {
...
// Only accept styles for marginTop and nothing else.
// the value for marginTop can only be 0, 4, or 8.
// The value for marginTop can only be 0, 4, or 8.
style?: StyleXStyles<{
marginTop: 0 | 4 | 8 | 16
}>,
Expand All @@ -173,7 +173,7 @@ import type {StyleXStyles} from '@stylexjs/stylex';
type Props = $ReadOnly<{
...
// Only accept styles for marginTop and nothing else.
// the value for marginTop can only be 0, 4, or 8.
// The value for marginTop can only be 0, 4, or 8.
style?: StyleXStyles<{
marginTop: 0 | 4 | 8 | 16
}>,
Expand Down

0 comments on commit 44381e8

Please sign in to comment.