File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,24 +112,24 @@ export declare namespace checksum {
112112}
113113
114114/**
115- * Converts a stringified address to a typed (checksummed) {@link ox#Address.Address}.
115+ * Converts a stringified address to a typed (optionally checksummed) {@link ox#Address.Address}.
116116 *
117117 * @example
118118 * ```ts twoslash
119119 * import { Address } from 'ox'
120120 *
121121 * Address.from('0xa0cf798816d4b9b9866b5330eea46a18382f251e')
122- * // @log : '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e '
122+ * // @log : '0xa0cf798816d4b9b9866b5330eea46a18382f251e '
123123 * ```
124124 *
125125 * @example
126126 * ```ts twoslash
127127 * import { Address } from 'ox'
128128 *
129129 * Address.from('0xa0cf798816d4b9b9866b5330eea46a18382f251e', {
130- * checksum: false
130+ * checksum: true
131131 * })
132- * // @log : '0xa0cf798816d4b9b9866b5330eea46a18382f251e '
132+ * // @log : '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e '
133133 * ```
134134 *
135135 * @example
You can’t perform that action at this time.
0 commit comments