Skip to content

Commit 2384d4c

Browse files
committed
Merge branch 'master' into playground-tweaks
2 parents 5e74246 + 0f2eaa4 commit 2384d4c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pages/docs/manual/v11.0.0/primitive-types.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ var firstLetterOfAlphabet = /* "a" */97;
103103

104104
**Note**: Char doesn't support Unicode or UTF-8 and is therefore not recommended.
105105

106-
To convert a String to a Char, use `String.get("a", 0)`. To convert a Char to a String, use `String.make(1, 'a')`.
106+
To convert a String to a Char, use `OCamlCompat.String.get("a", 0)`. To convert a Char to a String, use `OCamlCompat.String.make(0, 'a')` or `String.fromCharCode('a' :> int)`.
107107

108108
## Regular Expression
109109

styles/_docsearch.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
}
9090

9191
.DocSearch-Input {
92-
@apply w-full appearance-none outline-none bg-transparent border-none flex-1 text-14 px-4;
92+
@apply h-14 w-full appearance-none focus:outline-none bg-transparent border-none flex-1 text-14 px-4;
9393
}
9494

9595
.DocSearch-Input::placeholder {

0 commit comments

Comments
 (0)