diff options
| author | Imran Khan | 2021-10-29 16:07:16 +0000 |
|---|---|---|
| committer | Stefan Kangas | 2021-10-29 19:06:40 +0200 |
| commit | 3f998a3fc823df6117cfc286a557d495bc8ee11e (patch) | |
| tree | fb688059740ffb68eda0ebc856e7a71c7ad670a8 | |
| parent | 986fe634e2cc8c1f3b6a894c06f7673f37331e6f (diff) | |
| download | emacs-3f998a3fc823df6117cfc286a557d495bc8ee11e.tar.gz emacs-3f998a3fc823df6117cfc286a557d495bc8ee11e.zip | |
* lisp/textmodes/css-mode.el: Fix typo. (Bug#51488)
Copyright-paperwork-exempt: yes
| -rw-r--r-- | lisp/textmodes/css-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 9f123dc8167..e5017a68f78 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -305,14 +305,14 @@ | |||
| 305 | ;; CSS Box Alignment Module Level 3 | 305 | ;; CSS Box Alignment Module Level 3 |
| 306 | ;; (https://www.w3.org/TR/css-align-3/#property-index) | 306 | ;; (https://www.w3.org/TR/css-align-3/#property-index) |
| 307 | ("align-content" | 307 | ("align-content" |
| 308 | baseline-position content-distibution overflow-position content-position) | 308 | baseline-position content-distribution overflow-position content-position) |
| 309 | ("align-items" | 309 | ("align-items" |
| 310 | "normal" "stretch" baseline-position overflow-position self-position) | 310 | "normal" "stretch" baseline-position overflow-position self-position) |
| 311 | ("align-self" | 311 | ("align-self" |
| 312 | "auto" "normal" "stretch" | 312 | "auto" "normal" "stretch" |
| 313 | baseline-position overflow-position self-position) | 313 | baseline-position overflow-position self-position) |
| 314 | ("justify-content" "normal" | 314 | ("justify-content" "normal" |
| 315 | content-distibution overflow-position content-position "left" "right") | 315 | content-distribution overflow-position content-position "left" "right") |
| 316 | ("justify-items" | 316 | ("justify-items" |
| 317 | "normal" "stretch" baseline-position overflow-position self-position | 317 | "normal" "stretch" baseline-position overflow-position self-position |
| 318 | "left" "right" "legacy") | 318 | "left" "right" "legacy") |