mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-03 18:35:41 +08:00
Fix spec in delta operation (#193)
This commit is contained in:
parent
9b0ac23c2c
commit
bfaf6b7776
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ defmodule Livebook.Delta.Operation do
|
|||
@spec insert(String.t()) :: t()
|
||||
def insert(string), do: {:insert, string}
|
||||
|
||||
@spec insert(non_neg_integer()) :: t()
|
||||
@spec retain(non_neg_integer()) :: t()
|
||||
def retain(length), do: {:retain, length}
|
||||
|
||||
@spec delete(non_neg_integer()) :: t()
|
||||
|
|
Loading…
Reference in a new issue